lisabe96 Posted January 18, 2016 Share Posted January 18, 2016 Title says all, I want to WALK instead of RUN. However when I trigger a walking event the bot toggles running on. Is this part of the walking event? And how can I stop it? Quote Link to comment Share on other sites More sharing options...
Precise Posted January 18, 2016 Share Posted January 18, 2016 http://osbot.org/api/org/osbot/rs07/event/WalkingEvent.html#setEnergyThreshold-int- Quote Link to comment Share on other sites More sharing options...
LoudPacks Posted January 18, 2016 Share Posted January 18, 2016 (edited) Title says all, I want to WALK instead of RUN. However when I trigger a walking event the bot toggles running on. Is this part of the walking event? And how can I stop it? If your manually creating the event u can do: WalkingEvent malaria = new WalkingEvent(); malaria.setEnergyThreshold(101); Might not work but basically it will only run when your run energy is 101 or higher (impossible) Edited January 18, 2016 by LoudPacks Quote Link to comment Share on other sites More sharing options...
lisabe96 Posted January 18, 2016 Author Share Posted January 18, 2016 If your manually creating the event u can do: WalkingEvent malaria = new WalkingEvent(); malaria.setEnergyThreshold(101); Might not work but basically it will only run when your run energy is 101 or higher (impossible) I'm using webwalking event which doesn't have that option Quote Link to comment Share on other sites More sharing options...
Developer MGI Posted January 19, 2016 Developer Share Posted January 19, 2016 I'm using webwalking event which doesn't have that option a webWalkEvent.disableRun() will be added on the next build 3 Quote Link to comment Share on other sites More sharing options...