Honeycomb Posted June 5, 2013 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...
Magiichan Posted June 5, 2013 Posted June 5, 2013 It should not autologin when you use the stop function to stop your script :0
Honeycomb Posted June 5, 2013 Author 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
SXForce Posted June 5, 2013 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
Honeycomb Posted June 5, 2013 Author Posted June 5, 2013 Switch the sleep and stop methods. It might work. Yeah, I just removed sleep... We'll see...
BotRS123 Posted June 5, 2013 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.