Jump to content

progamerz

Scripter II
  • Posts

    3453
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by progamerz

  1. Looks awesome and it's definitely a good idea! same goes for your portfolio.
  2. @Khaleesi Can i have a trial please?
  3. Going to look into it now EDIT: simple fix pushed V2.2, please allow up to 24hrs for the update to be live.
  4. Hooks are broken probably, we need to wait for devs to fix them
  5. Because of the update yesterday, osbot's hooks are broken, you will need to wait for devs to update them.
  6. Osbot's hooks got broke, we will need to wait for devs to update it.
  7. Can help you in testing and looks awesome
  8. Please for the bugs to be fixed, fill in the bug report form in the OP. Thanks
  9. 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"?
  10. Can u check the logger for me? edit: If possible please use the format provided in the OP to report a bug? Thanks
  11. did u select "bank" or "depositbox" in the GUI? what was the status saying in the paint?
  12. 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/
  13. 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); }
  14. Hey, can u make sure what is the latest script version? as when i am currently running it shows v202 and i saw that you posted an update V207 so i am confused:
    ZzCQStN.png

    1. PKDealer

      PKDealer

      same to me

      please help with this

       

    2. PKDealer

      PKDealer

      Czar i really need help with ur script, im not sure if im doing something wrong but i can make my acc take its stuffs after dead, deathwalk not working for me.

      i pm u in the past but no anwesr till these days

       

       

×
×
  • Create New...