Ace Posted March 6, 2016 Share Posted March 6, 2016 Hey guys, is there a way to hop world when you're in the lobby? Like when you're logout so that you can switch worlds. It would be really helpful because logging out is faster than hopping worlds in game. Any help is greatly appreciated! Quote Link to comment Share on other sites More sharing options...
dutchxxje Posted March 6, 2016 Share Posted March 6, 2016 what do you mean by lobby? Quote Link to comment Share on other sites More sharing options...
Goaks Posted March 6, 2016 Share Posted March 6, 2016 Don't think so, i started making my own method a while ago, but it caused some errors and it appeared scripts only worked when logged in... Quote Link to comment Share on other sites More sharing options...
Ace Posted March 6, 2016 Author Share Posted March 6, 2016 (edited) what do you mean by lobby? Just when you're not logged in Edited March 6, 2016 by _Ace_ Quote Link to comment Share on other sites More sharing options...
Th3 Posted March 6, 2016 Share Posted March 6, 2016 (edited) Stop the current login handler and world hopper. Switch then start them again. You have to do this on another thread. Edited March 6, 2016 by Th3 Quote Link to comment Share on other sites More sharing options...
Ace Posted March 6, 2016 Author Share Posted March 6, 2016 Don't think so, i started making my own method a while ago, but it caused some errors and it appeared scripts only worked when logged in... really? because the miliseconds it takes to choose a world when you're logged in, is the chance pkers get to kill my bots Stop the current login handler and world hopper. Switch then start them again. You have to do this on another thread. Could you give me an example on how to do this? Quote Link to comment Share on other sites More sharing options...
Th3 Posted March 6, 2016 Share Posted March 6, 2016 (edited) really? because the miliseconds it takes to choose a world when you're logged in, is the chance pkers get to kill my bots Could you give me an example on how to do this? I haven't touched the api in a while and ingame hopper is faster. Disable autologin from random executor create a new thread on start of script. Thread thread = new Thread() { public void run() { while (true) { //if check client login state // if its logged out then create your own world hopper or login handler Thread.sleep(500); //catch exception } } }; thread.start(); Edited March 6, 2016 by Th3 1 Quote Link to comment Share on other sites More sharing options...
Goaks Posted March 6, 2016 Share Posted March 6, 2016 really? because the miliseconds it takes to choose a world when you're logged in, is the chance pkers get to kill my bots I'm unsure if you're on about world hopping or log out then in. But pre-world hopping, if logged out, it didn't work Quote Link to comment Share on other sites More sharing options...
Ace Posted March 6, 2016 Author Share Posted March 6, 2016 I haven't touched the api in a while and ingame hopper is faster. Disable autologin from random executor create a new thread on start of script. Thread thread = new Thread() { public void run() { while (true) { //if check client login state // if its logged out then create your own world hopper or login handler Thread.sleep(500); //catch exception } } }; thread.start(); Thanks, I know how to disable auto login, but how would I go about switching world when logged out? since widgets are invalid when logged out and the only thing that might work is mouse position but that would be inaccurate I'm unsure if you're on about world hopping or log out then in. But pre-world hopping, if logged out, it didn't work basically this: logout -> switch world -> login Quote Link to comment Share on other sites More sharing options...
Th3 Posted March 6, 2016 Share Posted March 6, 2016 Thanks, I know how to disable auto login, but how would I go about switching world when logged out? since widgets are invalid when logged out and the only thing that might work is mouse position but that would be inaccurate basically this: logout -> switch world -> login there is an algorithm, google it and you should see one, can't post a link here. they probably need to be updated a bit for extra worlds. Quote Link to comment Share on other sites More sharing options...
dutchxxje Posted March 6, 2016 Share Posted March 6, 2016 just let it logout then login maybe? idk what u mean Quote Link to comment Share on other sites More sharing options...
Goaks Posted March 6, 2016 Share Posted March 6, 2016 Thanks, I know how to disable auto login, but how would I go about switching world when logged out? since widgets are invalid when logged out and the only thing that might work is mouse position but that would be inaccurate basically this: logout -> switch world -> login This is the exact issue I had. I basically has to map the worlds rectangles and then move to mouse. An array or rectangles linked to each world. I had to map the world switch button and move the mouse, but IIRC the mouse didn't work. But that's how I tried going about it. 1 Quote Link to comment Share on other sites More sharing options...
Ace Posted March 6, 2016 Author Share Posted March 6, 2016 there is an algorithm, google it and you should see one, can't post a link here. they probably need to be updated a bit for extra worlds.How's it called? :p idk what to look for, or could you pm me the link? just let it logout then login maybe? idk what u meanYeah, but in between I want the script to hop world This is the exact issue I had. I basically has to map the worlds rectangles and then move to mouse. An array or rectangles linked to each world. I had to map the world switch button and move the mouse, but IIRC the mouse didn't work. But that's how I tried going about it. That's what came to my mind too, but there has to be a simpler way Quote Link to comment Share on other sites More sharing options...
Th3 Posted March 6, 2016 Share Posted March 6, 2016 pm's dont work on my account. google "another World Hopper" for example Quote Link to comment Share on other sites More sharing options...
Ace Posted March 6, 2016 Author Share Posted March 6, 2016 pm's dont work on my account. google "another World Hopper" for example alright, I think I've found something that I will try out tomorrow Quote Link to comment Share on other sites More sharing options...