Jump to content

Bobrocket

Members
  • Posts

    1664
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    100%

Everything posted by Bobrocket

  1. The colour of the numbers represent which box on the screen they refer to. The numbers are in the order parent, child, grandchild (in descending order; parent at top, grandchild at bottom). If it has a value of "-", it means there is no value
  2. Rules are being changed, you're allowed to purchase private scripts.
  3. Receiving as gift is bad for two things: it evades tax payments by PP (they're not taxed as heavily as goods/services), and it also means that there is no buyer protection (duh) because it's supposedly for your friend/family member. Requesting isn't going to help much either. Only deal with verified PPs, get ID proof and accept as a payment for services.
  4. It's not necessarily JavaScript that they check for, as some legitimate users do indeed have JS disabled. It's moreso checking for footprints, eg if you're under a HTTP flood you may see a lot of requests like this: GET /forum/ HTTP/1.1 Host: osbot.org User-Agent: Opera 9.0 Accept: */*;text/plain;text/html;application/json Now, if you see 1000 requests similar to this every second (with different IPs), you know they are all there for the same intent which is to take the site down. There is also another type of flood, called Slowloris, which utilises open HTTP POST connections to flood the server. A request for that may look like this: POST /forum/ HTTP/1.1 Host: osbot.org User-Agent: Opera 9.0 Content-Length: 999999999999999999 (at this point, the request is open and the server is receiving all the data until it reaches length 999999999999999999, which the end user exploits) If a request like that happens, then it's likely an attacker.
  5. If you run in injection mode you could get done for using "3rd party clients". Go big or go home lol
  6. To check if the minotaur has no health/is null. if (minotaur == null || !minotaur.exists() || minotaur.getHealth() == 0) { minotaur = getNpcs().closest("Minotaur"); } if (!myPlayer().isUnderAttack() && minotaur != null && !minotaur.isUnderAttack()) { if (!minotaur.isVisible()) getCamera().toEntity(minotaur); minotaur.interact("Attack"); } Something like this would work.
  7. Make minotaur a global variable and only look for a new one if minotaur is null, has no health, and you aren't under attack.
  8. Maybe heroes or paladins at the right level, just need to make sure I don't die there :p
  9. How are you running osbot? Through cmd?
  10. I'm definitely not a good example for learning, as I just dive in without looking at anything, much like assembling IKEA furniture ;) I believe there are a few good GUI tutorials on here, so look around the tutorial section!
  11. Thanks! After doing some stability tests, I'll be running at guards overnight (10 hours or so), which should give me an extra 200k exp
  12. Thanks for understanding Also, states are perfectly fine if you enjoy looking at 1000+ lines of code purely in onLoop. Now, for smaller scripts, this is no issue (2 of my scripts still use states, as do most of my private scripts), but of course when your scripts get larger management is a lot easier with a node system. Doing it earlier simply gets you used to using it which really does help, believe me. Imagine all of these classes: All clustered into one class, it gets pretty hectic (not saying it would all be there anyway, just using it as an example). Nodes also enforce an OOP programming style, which is infinitely more useful (think objects instead of global variables).
  13. Jagex hates him! Discover this one simple trick that this single mum used to achieve unlimited RuneScape membership today!
  14. Hey dude, not trying to be like super Nazi or anything, but if you release your scripts on the SDN can you not prefix them with "Omni"? Saves people confusion Also, try moving to a node system rather than using states. It allows for cleaner code and can make less code required too
  15. Spoiler alert if you haven't watched season 3, episode 16 of the US office I was looking through some of the clips for the office and this scene was amazing. Thought someone else might enjoy
  16. Get ardy cloak 1, infinite teleports to the monastery right next to the TOL
  17. Mine would be faster if I knew the commands off by heart :p used to deploying VPN servers
  18. I can set a vps up ready to bot in under 30 minutes what are you on about
  19. Lmao noobs getting sent straight to lumby after that KO
×
×
  • Create New...