Jump to content

Polymorphism

Members
  • Posts

    368
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Polymorphism

  1. I wasn't in the botting scene at the time, so i could be wrong, but i think timer and paris were the first to do it..
  2. You need to read up on some of Java's inner workings. https://docs.oracle.com/cd/E13150_01/jrockit_jvm/jrockit/jrdocs/refman/optionX.html
  3. Like Chris posted^^ Look through the API docs....find MouseDestination class...check how to implement or the direct subclasses and those will tell you.
  4. That's what this script is....its such a terrible script to write and i dont recommend it to anyone.
  5. No OSBot doesn't have that features. OSBot's mouse movements are pseudo-movements generated by creating a spline between the 2 points and applying dynamism with fitt's law. The 1 hour of botting will leave a pattern that is dissimilar to your human patterns, so it would stick out.
  6. Sometimes it's best to never legit play a botting account. This is due to the differently play styles between bot and human. That is of course, unless the bot uses human input by having you perform tests or play while it watches so it can play in a similar fashion.
  7. Try just filtering the currently loaded players. The code below was typed up in notepad and yes i know it doesn't compare properly. players.getAll().stream().filter(p->p!=null && p.getInteracting() != null && p.getInteracting() == myPlayer()).findFirst()
  8. Just so you know, only SOCKS proxies will work for osbot
  9. You may want to look into sending HTTP requests. I assume you're wanting this for a dynamic signature or something similar. https://www.mkyong.com/java/how-to-send-http-request-getpost-in-java/
  10. This is the man that banned me Mok Mard (made by me)
  11. Not the best way to do it, but i wrote it in about 30 seconds...and it should work int slot = random(0, 27); int attempts = 0; while (!inventory.getItemInSlot(slot).getName().equals("Shark")) { if (attempts > 50) break; slot = random(0, 27); attempts++; } mouse.click(new InventorySlotDestination(getBot(), slot), false); Add you own logic, error checking, etc https://osbot.org/api/org/osbot/rs07/input/mouse/InventorySlotDestination.html#InventorySlotDestination-org.osbot.rs07.Bot-int-
  12. Wow, good info! You are seriously an awesome guy
  13. Damn..mustve looked right over #getDefinition Thanks man
  14. Didn't see anything in the API. I'd like to check if an item is noted or stackable so that my script can loot it while having a full inventory.
  15. No. Having a scripter badge is not synonymous with programming talent.
  16. Maybe in 3 years I'll be able to get my main of 14 years back. rip
  17. I'm so happy to see this finally being used and appreciated
×
×
  • Create New...