Honeycomb Posted June 5, 2013 Share Posted June 5, 2013 What's the method to disable OSBot's autologin random? I have a method that logs out and stops my script, but OSBot's autologin random logs my character back in... Link to comment Share on other sites More sharing options...
Magiichan Posted June 5, 2013 Share Posted June 5, 2013 It should not autologin when you use the stop function to stop your script :0 Link to comment Share on other sites More sharing options...
Honeycomb Posted June 5, 2013 Author Share Posted June 5, 2013 (edited) It should not autologin when you use the stop function to stop your script :0 Well, it does... private void logout() throws InterruptedException { if (currentTab() != Tab.LOGOUT) { openTab(Tab.LOGOUT); this.IRT = random(1024, 2048); sleep(this.IRT); } selectInterfaceOption(182, 6, "Ok"); sleep(random(2048, 4096)); stop(); } Edited June 5, 2013 by Honeycomb Link to comment Share on other sites More sharing options...
SXForce Posted June 5, 2013 Share Posted June 5, 2013 (edited) Well, it does... private void logout() throws InterruptedException { if (currentTab() != Tab.LOGOUT) { openTab(Tab.LOGOUT); this.IRT = random(1024, 2048); sleep(this.IRT); } selectInterfaceOption(182, 6, "Ok"); sleep(random(2048, 4096)); stop(); } Switch the sleep and stop methods. It might work. Edited June 5, 2013 by SXForce Link to comment Share on other sites More sharing options...
Honeycomb Posted June 5, 2013 Author Share Posted June 5, 2013 Switch the sleep and stop methods. It might work. Yeah, I just removed sleep... We'll see... Link to comment Share on other sites More sharing options...
BotRS123 Posted June 5, 2013 Share Posted June 5, 2013 Yeah, I just removed sleep... We'll see... Tell me how this works out. I have something similar, but I never tested it. Link to comment Share on other sites More sharing options...
Wizard Posted June 5, 2013 Share Posted June 5, 2013 use RandomManagment Link to comment Share on other sites More sharing options...
Kati2 Posted June 6, 2013 Share Posted June 6, 2013 Put that method under onExit Link to comment Share on other sites More sharing options...