Yusi Posted May 15, 2023 Share Posted May 15, 2023 While im using WebWalkEvent Bot stucks at this point it clicking the main screen but he can't find a way out (It should go to Lumbridge bank upstairs) Also if the bot chooses to go from the right upstairts https://prnt.sc/OdO1HivpoVsv it clicks the dot i pointed at and walks there for a few seconds then clicks the upstairs from here https://prnt.sc/hD5ISms3tZO_ Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted May 15, 2023 Share Posted May 15, 2023 (edited) 6 minutes ago, Yusi said: While im using WebWalkEvent Bot stucks at this point it clicking the main screen but he can't find a way out (It should go to Lumbridge bank upstairs) Also if the bot chooses to go from the right upstairts https://prnt.sc/OdO1HivpoVsv it clicks the dot i pointed at and walks there for a few seconds then clicks the upstairs from here https://prnt.sc/hD5ISms3tZO_ Never had any issues regarding this, might want to show the client logger for more info. or maybe a logic issue in the script? Also missclicks are always possible, should not matter since it fixes itself within a few seconds Edited May 15, 2023 by Khaleesi 1 Quote Link to comment Share on other sites More sharing options...
Yusi Posted May 15, 2023 Author Share Posted May 15, 2023 (edited) On 5/15/2023 at 8:26 AM, Khaleesi said: Never had any issues regarding this, might want to show the client logger for more info. or maybe a logic issue in the script? Also missclicks are always possible, should not matter since it fixes itself within a few seconds I didn't see any error log while it stucked about the missclick it happening oftenly and it happens the same way everytime also waits until it almost reached at the point it missclicked so it takes a little bit time and i don't think its an script issue im not doing anything that possibly cause that problem btw love your scripts public void webWalkEventArea(Area targetArea) { WebWalkEvent webWalkEventArea = new WebWalkEvent(targetArea); webWalkEventArea.setMinDistanceThreshold(0); webWalkEventArea.setEnergyThreshold(random(11,36)); webWalkEventArea.setBreakCondition(new Condition() { @Override public boolean evaluate() { return myPlayer().isUnderAttack(); } }); execute(webWalkEventArea); } Edited May 18, 2023 by Yusi Quote Link to comment Share on other sites More sharing options...
Delivery Posted May 15, 2023 Share Posted May 15, 2023 I have noticed that interact and webwalker can sometimes break when you have your client on resizable and the one that isn't fixed , for me it tries to interact / click on the inventory (and the object/player is under that interface) 1 Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted May 15, 2023 Share Posted May 15, 2023 9 hours ago, faketesco said: I have noticed that interact and webwalker can sometimes break when you have your client on resizable and the one that isn't fixed , for me it tries to interact / click on the inventory (and the object/player is under that interface) I didn't even see it was in resizeable @Yusi Fixed is always recommended, unless you full screen the client 1 Quote Link to comment Share on other sites More sharing options...
Yusi Posted May 15, 2023 Author Share Posted May 15, 2023 10 hours ago, faketesco said: I have noticed that interact and webwalker can sometimes break when you have your client on resizable and the one that isn't fixed , for me it tries to interact / click on the inventory (and the object/player is under that interface) 39 minutes ago, Khaleesi said: I didn't even see it was in resizeable @Yusi Fixed is always recommended, unless you full screen the client Thanks to y'all ill try it 1 Quote Link to comment Share on other sites More sharing options...