Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. probably related to this:
  2. Botre

    Hello

    Two options: 1. You are not botting on our client -> you don't know its banrate. 2. You are botting on our client -> you do have some trust in its banrate.
  3. Botre

    Hello

    welcome Don't listen to Hero, he hasn't botted in months, banrates are higher than a couple of months ago, but the devs and scripters are working on that ;) Enjoy your stay!
  4. Sounds sexy Claiming first vet post
  5. What about people buying jets, castles, private islands? Apple sells prestige. Materialism yo.
  6. It's a status symbol. http://en.wikipedia.org/wiki/Luxury_goods http://innocuous.org/articles/2010/10/17/apple-is-a-luxury-brand-android-will-never-be/
  7. Botre

    Spells

    Gl!
  8. Botre

    Spells

    The Spell enum does not include any non-standard spellbook spells. You'll have to grab the spell's interface child and interact with it. http://osbot.org/api/org/osbot/rs07/api/ui/RS2InterfaceChild.html
  9. http://onlinetonegenerator.com/ ...pls
  10. Flunitrazépam, the land of endless possibilities
  11. Lol "Randoms aren't effective anymore". Obvious lie. Thanks Jagex ;)
  12. Like a vid of me coding? :p
  13. Dumb -> less dumb -> almost smart -> smart. You have to start somewhere ^^
  14. welcome back
  15. Scripting tutorial, what do YOU want? I'm thinking about writing a little tutorial to bring in some fresh scripters / help struggling ones, I would like some input concerning its content. Which basic features of the API should it cover? Which java features would you like to see explained (in a scripting context)? Any specific design structures you would like to learn about? (should it cover one design in-depth or multiple ones brieflyà? Would you like to have multiple features explained via one or multiple example script(s) ? Anything else?
  16. I actually used includeMin and excludeMax as argument names first. But then I though "allow" would be more comprehensible. Meh, not a huge difference anyways.
  17. Yep, this is to help people understand some of the mechanics behind such methods. I prefer booleans to include / exclude limits, not the most type-friendly way to go, but improves the readability imo.
  18. public static int rndmInt(boolean allowMinimum, int minimum, int maximum, boolean allowMaximum) { int min = minimum + (allowMinimum ? 0 : 1); int max = maximum + (allowMaximum ? 1 : 0); return new Random().nextInt(max - min) + min; } ^it's "exclusive" not "exlusive".
  19. Apple's DRM tech is a huge joke. Seriously :p
  20. Idk, there might be a weaker faction of monkeys that could be AFKable on the island ^^
  21. Also (not 100% sure): Monsters on Ape Atoll Certain monsters in the wilderness
  22. You could get lured into the desert and die.
  23. faking hell
×
×
  • Create New...