May 15, 20232 yr 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_
May 15, 20232 yr 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, 20232 yr by Khaleesi
May 15, 20232 yr Author 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, 20232 yr by Yusi
May 15, 20232 yr 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)
May 15, 20232 yr 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
May 15, 20232 yr Author 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
Create an account or sign in to comment