Welcome!

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

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Question A few questions I could never find the answers to

( ͡° ͜ʖ ͡°)
Joined
Mar 30, 2015
Messages
2,416
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,377
]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