- BrickPlanet Forum
- Game & Scripting Discussion
- A Script that refresh the shop continously
So i am bored (again) and i decided to make a script that refresh the shop continously, this could be very useful if you want to buy rare item very quickly here is a script:
"""
let HowManyTimeToRefreshTab = 2000 // will refresh the tab 2000 times let TimeToRefreshTab = 1000 // how many time it will wait to refresh again (its miliseconds so 1000 is 1 seconds) function RefreshTab(i) { if (i<0) return; setTimeout(function(){ searchMarket(); RefreshTab(i);}, TimeToRefreshTab);}
RefreshTab(HowManyTimeToRefreshTab)
"""
to use it go to the shop and go to either Featured tab or rare items tab then inspect element, go to console, paste the script and execute it.
Funny little script. Might be nice to incorporate this into an chrome extension!
Gonna edit your script a little bit. Give me a moment and I'll make it even better!
Update: Worked on the script, but realized what I created may crash the market... I think I'd rather burn this code than release it publicly.
pretty sure this can crash low ram websites