Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question A few questions I could never find the answers to

( ͡° ͜ʖ ͡°)
Joined
Mar 30, 2015
Messages
2,410
Most probably this actually, especially if @Serene uses a lot of while loops.

Lobby handler is working fine for me on OSRS, probably should have stated that I haven't had any issues with it.

What could a workaround for that be? My while loops are only there for missclicking, and I thought the onLoop wouldn't be called until login handler and lobby handler were done executing.
 
Any update on how I can deal with the lobbyhandler so that it'll activate before my onLoop is called?
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
What could a workaround for that be? My while loops are only there for missclicking, and I thought the onLoop wouldn't be called until login handler and lobby handler were done executing.
 
Any update on how I can deal with the lobbyhandler so that it'll activate before my onLoop is called?
uhm, if RuneScape.isLoggedIn() perform onLoop, otherwise return.
 
Joined
Dec 10, 2014
Messages
3,255
]Any update on how I can deal with the lobbyhandler so that it'll activate before my onLoop is called?
Don't use while loops that could end up infinitely looping, or at least make sure that they'll stop looping if RuneScape.isLoggedIn() returns false.
If you're going to use a loop, at least try adding a timeout to it to prevent infinite loops, e.g. a limit on how many times it loops.
 
Top