Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Botre

    Listener

    If you are going to compare inventories for equality, couldn't you just use these lines (at appropriate places of course,not stacked like this )? Item[] compareThis = getInventory().getItems(); Item[] withThis = getInventory().getItems(); boolean equaliThis = compareThis != null && withThis != null && Arrays.equals(compareThis , withThis);
  2. http://osbot.org/forum/topic/59949-a-poem-for-the-homeless-users-begging-for-vet/
  3. pls
  4. Botre

    Listener

    Just curious, what exactly would it be listening for ? :|
  5. If you are asking if you can release a script for free on the SDN if there's already a paid alternative then the answer is yes ^^
  6. Could you reformulate that phrase? It's very hard to understand
  7. 3 2 1 Coma
  8. Depends on the amount of NPCs it has to iterate through.
  9. The missing o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
  10. O Val I've seen all your curves Where it gets narrow Where it widens out O Val
  11. A nus My nus looks like a plus in a zero A sign-holding cipher Slowly getting wider Taking a dump Smiling at your post Grateful for the bump
  12. Plus rhymes with minus But you are still no hero For that expression to be sound You need a rhyme for zero + - 0 Plus Minus Zero That's Robert De Niro
  13. Crime is pest Plus and zero don't rhyme To not rhyme is crime Annoying at best
  14. No rhyme, no hero Plus doesn't rhyme with zero G T F O.
  15. Chum rhymes with cum And so does your mum Who thought I was cool Enough to be blue Da ba dee da ba drool Peace out little bee
  16. Wow hijack my thread Once more and you'll die Yes that was a threat I hope you shall cry.
  17. Sentende Pls The ende Pls
  18. The urine's from Alek That's how you got blue The piss of a black man Is how you passed through But it's fine, sorry about the tit.
  19. Yes blue for me You smell like pee And have one boob And suck at rhyming Whatever noob
  20. A poem for the homeless users begging for vet Maldesto is red Could I be blue Don't beg for vet It's not yet your crew Dex is now pink I want that too Oh beggars do stink And vets don't need poo #VeteransSmellGood #KeepOurRankPure
  21. Peace out brochacho
  22. Jacmob'd
  23. Dem algos Dogerina lel
  24. (p.getX() + myPosition().getX()) / 2 + MethodProvider.random(-3, 3) 1) Parentheses! ((p.getX() + myPosition().getX()) / 2) + MethodProvider.random(-3, 3) Same applies to what you do for the Y coordinate. 2) Redundant action repetition for (int i = 0; i < 2; i++) { mouse.click(new MiniMapTileDestination(bot, p), false); // YOU CLICK TWICE HERE } mouse.click(new MiniMapTileDestination(bot, p), false); // AND A THIRD TIME HERE 3) Awkward sleeping The idea of having a fail counter isn't bad at all, this while loop makes no sense whatsoever though. The fail int doesn't represent actual fails, just you not moving. After each fail you should probably retry the walkTile method instead of just sleeping again. while ((myPosition().distance(p) > 2) && (fail < 10)) { MethodProvider.sleep(500L); if (!myPlayer().isMoving()) { fail++; } } ^not very effective
×
×
  • Create New...