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.

Bug Shop.sell stuck in loop (spams sells without breaking)

Joined
Dec 4, 2018
Messages
1
  1. RuneMate Version: 2.105.0
  2. Affected Games: OSRS
  3. Code Used:
Code:
if(Shop.sell(ID, AMOUNT))
{
     return;
}

Currently building a task bot, and when using that code in a seperate task (the Taskbot has a total of 4 tasks) for selling stuff to the shop, it'll spam the sell button and stick there. When breakpointing and stepping in, it gets stuck right away into these two methods.

1bb55b5fa7e65370d0fb1e35d7a10b4d.png


a6fe04fc6a81b13b863c0897c2a314e9.png


Again I am playing on OSRS so not sure why RS3 things are brought up.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
  1. RuneMate Version: 2.105.0
  2. Affected Games: OSRS
  3. Code Used:
Code:
if(Shop.sell(ID, AMOUNT))
{
     return;
}

Currently building a task bot, and when using that code in a seperate task (the Taskbot has a total of 4 tasks) for selling stuff to the shop, it'll spam the sell button and stick there. When breakpointing and stepping in, it gets stuck right away into these two methods.

1bb55b5fa7e65370d0fb1e35d7a10b4d.png


a6fe04fc6a81b13b863c0897c2a314e9.png


Again I am playing on OSRS so not sure why RS3 things are brought up.
All isRS3() is doing is checking if you're on osrs or rs3 and delegating to a different method depending on the case. Could you please record a video of the behavior?
 
Top