Everything posted by progamerz
- Shudsy's Orber
- AIO Yew Chopper
-
Veteran Rank demotions + extending the date
Can i get vet?
-
Progamerz Private Scripts [Reliable] [Affordable] [BTC/07gp]
Bump
- Three Word Story...
-
Khal AIO Crafter
@Khaleesi Can i have a trial please?
-
Progamerz Private Scripts [Reliable] [Affordable] [BTC/07gp]
Bump
- Demogorgons AIO Herblore
-
AIO Yew Chopper
Going to look into it now EDIT: simple fix pushed V2.2, please allow up to 24hrs for the update to be live.
-
Progamerz Private Scripts [Reliable] [Affordable] [BTC/07gp]
Bump
-
Can't interact with inventory?
Hooks are broken probably, we need to wait for devs to fix them
-
PPOSB - AIO Hunter
Because of the update yesterday, osbot's hooks are broken, you will need to wait for devs to update them.
-
APA Sand Crabs
Osbot's hooks got broke, we will need to wait for devs to update it.
-
APA Rooftop Agility
Can help you in testing and looks awesome
-
AIO Yew Chopper
Please for the bugs to be fixed, fill in the bug report form in the OP. Thanks
-
Progamerz Private Scripts [Reliable] [Affordable] [BTC/07gp]
Bump
-
AIO Yew Chopper
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"?
-
Progamerz Private Scripts [Reliable] [Affordable] [BTC/07gp]
Bump
-
AIO Yew Chopper
Can u check the logger for me? edit: If possible please use the format provided in the OP to report a bug? Thanks
-
AIO Yew Chopper
did u select "bank" or "depositbox" in the GUI? what was the status saying in the paint?
-
Get Closest Bank
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/
-
Get Closest Bank
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); }
-
Progamerz Private Scripts [Reliable] [Affordable] [BTC/07gp]
Available for simple/basic scripts!
-
Excellent Smithing [Maintenance Only]
Looks awesome, good luck!
-
A bot for shop/ auto-buying?
Can pm me/add my skype in signature for a private script