March 6, 20169 yr 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!
March 6, 20169 yr 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...
March 6, 20169 yr Author what do you mean by lobby? Just when you're not logged in Edited March 6, 20169 yr by _Ace_
March 6, 20169 yr Stop the current login handler and world hopper. Switch then start them again. You have to do this on another thread. Edited March 6, 20169 yr by Th3
March 6, 20169 yr Author 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?
March 6, 20169 yr 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, 20169 yr by Th3
March 6, 20169 yr 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
March 6, 20169 yr Author 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
March 6, 20169 yr 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.
March 6, 20169 yr 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.
March 6, 20169 yr Author 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
March 6, 20169 yr Author 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
Create an account or sign in to comment