- BrickPlanet Forum
- Game & Scripting Discussion
- A Script that refresh the shop continously
A Script that refresh the shop continously
Posted Jan 25th 2023 at 7:07AM
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.
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.
Posted Jan 26th 2023 at 9:09PM
Funny little script.
Might be nice to incorporate this into an chrome extension!
Might be nice to incorporate this into an chrome extension!
Posted Jan 26th 2023 at 9:13PM
Gonna edit your script a little bit. Give me a moment and I'll make it even better!
Posted Jan 26th 2023 at 9:52PM
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.
I think I'd rather burn this code than release it publicly.
Posted Jan 29th 2023 at 10:05AM
pretty sure this can crash low ram websites
Search Forum
Thread Info
Replies
4
Views
37