futurepasts Posted January 9, 2016 Share Posted January 9, 2016 Hello so i encounter 2 problems today first one is with walking other is about failsafe 1.Walking Since new webwalking won't work correctly due it's only in beta so im forced to use other methods like this:( i know this one is outdated but it does the job mostly ) localWalker.walk(AREA,true); so the problem is that when sript stops working due lacks of failsafes (2nd question) and when osbot rellogs it wont walk anymore unless i walk manually ( same shit with webwalking) and inside logger i never saw any errors 2.Failsafe Since i wan't to make script that works for more than 30min to 1 hour i need to create failsafe bu how to do it ? is this what im thinking is good? Make timer for idle time example like 2 mins and if that time passed and im neither at bank or any other location walk to bank/somewhere else. And for last how to know where my script crashed since i don't wanna sit near my pc all day to look at what part my script crashed Quote Link to comment Share on other sites More sharing options...
Explv Posted January 9, 2016 Share Posted January 9, 2016 (edited) Hello so i encounter 2 problems today first one is with walking other is about failsafe 1.Walking Since new webwalking won't work correctly due it's only in beta so im forced to use other methods like this:( i know this one is outdated but it does the job mostly ) localWalker.walk(AREA,true); There is a new walking method too you know: walking.walk(position); And its probably an issue with your Script, not the OSBot API Edited January 9, 2016 by Explv Quote Link to comment Share on other sites More sharing options...
Paradox68 Posted January 9, 2016 Share Posted January 9, 2016 w.....what Webwalking works decently. Also you can't just put localWalker.walk(AREA, true); if you want to manually add pathing use Divine Utiliy or Explv's Location Assistant to plot a path array. As for the "failsafe" just use while loops if you want to keep it simple. Quote Link to comment Share on other sites More sharing options...
Chicken Wing Posted January 9, 2016 Share Posted January 9, 2016 Hello so i encounter 2 problems today first one is with walking other is about failsafe 1.Walking Since new webwalking won't work correctly due it's only in beta so im forced to use other methods like this:( i know this one is outdated but it does the job mostly ) localWalker.walk(AREA,true); so the problem is that when sript stops working due lacks of failsafes (2nd question) and when osbot rellogs it wont walk anymore unless i walk manually ( same shit with webwalking) and inside logger i never saw any errors 2.Failsafe Since i wan't to make script that works for more than 30min to 1 hour i need to create failsafe bu how to do it ? is this what im thinking is good? Make timer for idle time example like 2 mins and if that time passed and im neither at bank or any other location walk to bank/somewhere else. And for last how to know where my script crashed since i don't wanna sit near my pc all day to look at what part my script crashed Web walking should be fine once the next live build is released, I would just wait till then tbh. For the failsafe, you can start a thread that runs asynchronously that checks every 2 mins the conditions you want, if they are met you can execute the events you want. Quote Link to comment Share on other sites More sharing options...