tzhaarown Posted January 25, 2015 Share Posted January 25, 2015 How can I disable the autologin? Link to comment Share on other sites More sharing options...
Joseph Posted January 25, 2015 Share Posted January 25, 2015 Not really sure man Link to comment Share on other sites More sharing options...
Preliator Posted January 25, 2015 Share Posted January 25, 2015 You can do the following: bot.getRandomExecutor().registerHook( new RandomBehaviourHook(RandomEvent.AUTO_LOGIN) { @Override public boolean shouldActivate() { return false; } } ); And if you want to allow the autologin to activate again, use the same code again but change the return false; to return super.shouldActivate(). 1 Link to comment Share on other sites More sharing options...
Alek Posted January 25, 2015 Share Posted January 25, 2015 You can use a "Default" account. 1 Link to comment Share on other sites More sharing options...
Isolate Posted January 26, 2015 Share Posted January 26, 2015 You can use a "Default" account. I'd use this for adding my own break timers though for accounts :P In which case Default is not helpful Link to comment Share on other sites More sharing options...