Jump to content

Nitrousek

$100.00 Donor
  • Posts

    2889
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Nitrousek

  1. Yes. That was a sophisticated joke. But it actually happens.
  2. In fact, our client has found a way to make fools of jagex, by sending our botters there as a default world.
  3. Whenever Mysterious box random appears, the script breaks. Two times in a row now.
  4. Nitrousek

    Spam?

    Is it just me who finds this annoying? In my opinion this guy deserves TWC... + Just mindless copy and paste, bumping posts that were dead for months, and greetings people who have been banned... lol.
  5. Show me better then. I'd love to see someone make "much better"
  6. No miracles in the near future, so I suggest: http://osbot.org/forum/topic/50741-official-script-developer-application/
  7. I make the best intros/outros on this website, although I won't have time to make any, + you can't afford me :P My work: https://docs.google.com/file/d/0BynAW8_QaAYiWkVLRm9SZGd3WHc/edit https://docs.google.com/file/d/0B7771mc3-Hs0ZDJBTW93QkxOd0U/edit?pli=1
  8. By the way, I have noticed a SIGNIFICANT decrease in bans comparing OSBot 2 to OSBot 1. And that says something. In like 3-4 hours of testing on OSBot 1 I was thrown into a bot world with new accounts. The next day I was banned. Did the exact same thing on OSBot 2 with my converted script for the next 5-6 days, I still haven't been banned.
  9. Good luck putting that into an algorithm, so it doesn't look totally weird and doesn't get people banned rather than helping them to stay not.
  10. PS. you wouldn't want any mouse info from me. I'm fucking retarded. I do mouse waves for no reason while listening to music, or sometimes for no reason at all, just to see the mouse bounce. Because
  11. pls... give it to me... getting banned since 08' I deserve it... XD
  12. It randomizes between 2 and 4 fish. More human-like, I guess.
  13. You seem pretty confident. Waiting forward to it then! I hope by going great you mean that it will be functional for all to use (most of randoms working + no longer breaks on random), by the time of the release. PS. Mouse seems to work much better now.
  14. I'll record it if it happens any time soon. PS. banking actually works in this version.
  15. Laz, something's up with Tile Destination, it worked fine in 2.1.11. In 2.1.12 and 2.1.13 however, it does what Swizz described in the other thread. Clicks random tiles, sometimes runs away for a moment along the path, for no reason at all. I'd suggest you revert it to the way it was in 2.1.11, and start working on randoms and script pausing/stopping, since it still has a lot of problems
  16. I know right? OSBot causesh me to drink as well... can't even test my scrpiot for longer than 1h...hic!
  17. I have never understood the point in fights like these... That's how I fight ^.
  18. You can also change the itemName to drop, to exception if you'd prefer that. Should be fairly easy to change. public void dropAll(String itemName) throws InterruptedException { Inventory inv = client.getInventory(); if (inv.contains(itemName)) { for (Item item : inv.getItems()) { if (item.getName().equalsIgnoreCase(itemName)) { MouseDestination slotDestination = new RectangleDestination( inv.getDestinationForSlot(inv .getSlotForName(itemName))); if (client .moveMouseTo(slotDestination, false, false, false)) { client.clickMouse(true); int i = findOption("Drop"); if (i > 0) { if (client.moveMouseTo(new RectangleDestination( client.getMenuX(), client.getMenuY() + 5 + (i * 15), client.getMenuWidth() - 3, 6), false, true, false)) { sleep(random(150, 300)); } } } } } } } public int findOption(String option) { int i = 0; Iterator<Option> it1 = client.getMenu().iterator(); while (it1.hasNext()) { ++i; Option temp = it1.next(); if (temp.action.equalsIgnoreCase(option)) { return i; } } return 0; }
×
×
  • Create New...