Jump to content

inababila

Trade With Caution
  • Posts

    251
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by inababila

  1. What happened, I don't understand anything. What do you mean?
  2. You are not allowed to sell on the market until 100 pc.
  3. Wow bro.. that looks amazing. 10/10 :P
  4. Also use command line parameter to disable randoms.
  5. Only if your IP address is flagged.
  6. What @Team Cape said. After that check these links, I am sure they will help you. https://osbot.org/forum/forum/250-tutorials/ The osbot api, you will find everything you need. https://osbot.org/forum/forum/250-tutorials/ So many tutorials out on how to code for osrs.
  7. I have multiple with 7QP as well. I have no minimum/maximum rule. Pm if interested!
  8. Description : Wilderness looter F2P / P2P : F2P REQS : - Estimated Difficulty : Not that hard, but such scripts are not allowed on the sdn, so if you code one it would be cool.
  9. 66 magic accounts are for almost 4m
  10. There are some questions that interrupt and confuse my mind, lol. Does bot analysis world still exist? World 385 and 386 used to be called bot analysis, where suspicious players were being sent to be carefully checked. Now they do not hold that name anymore so? In a few threads and snippets, saw some people not using the inventory interact method, they do get the mouse destination of the inventory slot, then it's rectangle and after that, they click on it instead. Any difference? Would you choose this over the osbot API? https://osbot.org/forum/topic/70864-better-conditional-sleep/
  11. @nosepicker Yup I understand, I will add item existence checker and do a recursive function. Thanks
  12. @Apaec @nosepicker Thanks for that, was really useful. So I will be changing my condition to the opposite. Also, 5000,500 means the timeout is 5 seconds, check for the condition every half a second, right? And, what would happen if the 5 seconds passed and the item is still not null = exists? Like are there any failsafe or other ways I could implement to check or increase the timmer?
  13. Item item = script.getInventory().getItemInSlot(1); if (item != null && script.getInventory().interact(1, "Drop")) { new ConditionalSleep(5000, 500) { public boolean condition() { return item != null; } }; } Over this Item item = script.getInventory().getItemInSlot(1); if (item != null && script.getInventory().interact(1, "Drop")) { script.sleep(random(500, 3000)); } Can someone please explain the difference between both methods, the idea behind them, how it would work, and why should/shouldn't I use that way?
  14. How can I make the client not stop if the account is banned? I get this error "Your account has been disabled, stopping script." and then the script terminates. I tried out what that link says, but doesn't seem to work. https://osbot.org/forum/topic/50429-activatingdeactivating-randoms/ I want to override the default actions.
×
×
  • Create New...