Doout Posted March 1, 2015 Share Posted March 1, 2015 Can someone tell me how to remove the login random then add it back in later? I have tryclient.getBot().getRandomExecutor().unregisterHook(RandomEvent.AUTO_LOGIN); // Doesnt work client.getBot().getRandomExecutor().terminate() // work but no way to add back the random I even try clearing the random list but that doesnt work Quote Link to comment Share on other sites More sharing options...
countvidal Posted March 5, 2015 Share Posted March 5, 2015 Would love to know this as well. Trying to make my own random auto login to take into account runescape updates so it doesnt login a million times. Quote Link to comment Share on other sites More sharing options...
countvidal Posted March 12, 2015 Share Posted March 12, 2015 any ideas? Quote Link to comment Share on other sites More sharing options...
Ericthecmh Posted March 12, 2015 Share Posted March 12, 2015 Not sure what it's like now, but when I had API access it was this way: You can't unregister a built in solver using unregister. You can unregister your own solvers. So to add in your own login handler, you'd have to use registerHook with your own solver implemented. if you just want to suppress a solver, just register a solver that returns false for shouldActivate (or whatever they call it) Quote Link to comment Share on other sites More sharing options...