anderiel Posted May 16, 2016 Share Posted May 16, 2016 Hey guys, im getting this log from the client : WebWalkingEvent; Terminated! Exceeded attempt threshold. Could anyone tell me what it means? It does not happen every time, only for some routes, so maybe it is a bug (i already submitted a bug report thread, but these took way too long to approve and i would like some answers a little bit faster). im using the standard walking.webWalk(Area) Quote Link to comment Share on other sites More sharing options...
Eagle Scripts Posted May 16, 2016 Share Posted May 16, 2016 Hey guys, im getting this log from the client : WebWalkingEvent; Terminated! Exceeded attempt threshold. Could anyone tell me what it means? It does not happen every time, only for some routes, so maybe it is a bug (i already submitted a bug report thread, but these took way too long to approve and i would like some answers a little bit faster). im using the standard walking.webWalk(Area) it probs means that it couldn't find a route, tried as many times until it's threshold and therefore terminated. That's what i'd say looking at the error message, but i'm not sure though Quote Link to comment Share on other sites More sharing options...
anderiel Posted May 16, 2016 Author Share Posted May 16, 2016 it probs means that it couldn't find a route, tried as many times until it's threshold and therefore terminated. That's what i'd say looking at the error message, but i'm not sure though That is not the case, i am quite sure that the route exists. It actually did find it a few times, but most of the time i get this error. Quote Link to comment Share on other sites More sharing options...
DragonAlpha Posted May 16, 2016 Share Posted May 16, 2016 Try webwalk(Position) You must be passing an Area, and that area contains an unwalkable tile. The webwalker will then fail. Quote Link to comment Share on other sites More sharing options...
anderiel Posted May 17, 2016 Author Share Posted May 17, 2016 Try webwalk(Position) You must be passing an Area, and that area contains an unwalkable tile. The webwalker will then fail. webWalk(Position) gives an unknown metho error, and webWalk(Position[]) when i make and array of one position, gives the same log. Exceeded attempt treshold. Funny thing is, sometimes after i restart the client, it webwalks just fine. Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted May 17, 2016 Share Posted May 17, 2016 (edited) webWalk(Position) gives an unknown metho error, and webWalk(Position[]) when i make and array of one position, gives the same log. Exceeded attempt treshold. Funny thing is, sometimes after i restart the client, it webwalks just fine. Can You show me the code you are using? What start position are you using? whats the end position? Are you installing customInteractingScripts ? Edited May 17, 2016 by Khaleesi Quote Link to comment Share on other sites More sharing options...
anderiel Posted May 17, 2016 Author Share Posted May 17, 2016 (edited) Can You show me the code you are using? What start position are you using? whats the end position? Are you installing customInteractingScripts ? Position[] pos = new Position[]{positions[nextLocationIndex]}; if(walking.webWalk(pos)) { // if walking succeeds i change state, else i try walking again. } And im going from this area new Area(new Position(2811,3464,0),new Position(2812,3463,0)) to this area new Area(new Position(2668,3377,0),new Position(2673,3372,0)) this is the code i tried for using only position, previously i was using webWalk(area) in place of webwalk(position[]) and I dont know what customInteractingScripts are. Edited May 17, 2016 by anderiel Quote Link to comment Share on other sites More sharing options...