Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

progamerz

Scripter II
  • Joined

  • Last visited

Everything posted by progamerz

  1. Trial please?
  2. bump
  3. @Khaleesi Can i have a trial please?
  4. Ban evading
  5. Going to look into it now EDIT: simple fix pushed V2.2, please allow up to 24hrs for the update to be live.
  6. Hooks are broken probably, we need to wait for devs to fix them
  7. Because of the update yesterday, osbot's hooks are broken, you will need to wait for devs to update them.
  8. Osbot's hooks got broke, we will need to wait for devs to update it.
  9. progamerz replied to Apaec's topic in Agility
    Can help you in testing and looks awesome
  10. Please for the bugs to be fixed, fill in the bug report form in the OP. Thanks
  11. The pathing issue isn't my problem its the webwalker, tho i can create custom paths which would make it more accurate, as for the first problem, is there any error in the logger when it says "Walking to yew location"?
  12. Can u check the logger for me? edit: If possible please use the format provided in the OP to report a bug? Thanks
  13. did u select "bank" or "depositbox" in the GUI? what was the status saying in the paint?
  14. Again why u used that in the onstart() method? onstart is only for the script to run specific code when started what i sent should be in the onloop. Edit: not being rude, but do you know basic java? and did you try looking at the tutorial section? would help you out https://osbot.org/forum/forum/250-tutorials/
  15. for (int i = 0; i < 53; i++) { if (!bankArea[i].contains(myPlayer())) { walking.webWalk(bankArea); if (bankArea[i].contains(myPosition())) { } else if (!getBank().isOpen()); { getBank().open(); new ConditionalSleep(2000, 100) { @Override public boolean condition() throws InterruptedException { return getInventory().isEmpty(); } }.sleep(); } } } return random(2000, 500); why return random(2000,500)? that would simply not work i think, the first param should always be less than the second return(500,2000) instead of doing for(int i = 0; i < 53, i++) you could simply do for(int i = 0; i < bankArea.size, i++) And you have done many non logical things here, your logic currently is if bankArea[0] does not contain your player walk to it? so that would probably walk you to everybank, cause to walk to the closest you need to use WebWalkEvent. Instead of all this just do an object booth and assign to it the closest object with name "Bank Booth" if object is null(as it will be null if you aren't in the bank) u will create a webwalkevent and walk to nearest bank, or else open bank and etc. As for the ConditionalSleep please check out the docs, and why would you wait for the inventory being empty? instead wait for the bank to be open. for (int i = 0; i < bankArea.length; i++) { if (!bankArea[i].contains(myPlayer())) { WebWalkEvent event = new WebWalkEvent(bankArea); execute(event); } else { if(getBank().isOpen()) { if(getBank().depositAll()) { new ConditionalSleep(2000) { @Override public boolean condition() throws InterruptedException { return getInventory().isEmpty(); } }; } } else { if(getBank().open()) { new ConditionalSleep(2000) { @Override public boolean condition() throws InterruptedException { return getBank().isOpen(); } }; } } } } OR RS2Object bankBooth = getObjects().closest("Bank booth"); if(bankBooth != null) { if(getBank().isOpen()) { if(getBank().depositAll()) { new ConditionalSleep(2000) { @Override public boolean condition() throws InterruptedException { return getInventory().isEmpty(); } }; } } else { if(getBank().open()) { new ConditionalSleep(2000) { @Override public boolean condition() throws InterruptedException { return getBank().isOpen(); } }; } } } else { WebWalkEvent event = new WebWalkEvent(bankArea); execute(event); }
  16. Looks awesome, good luck!
  17. Can pm me/add my skype in signature for a private script

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.