A Script that refresh the shop continously
Posted by Chips on Jan 25th 2023, 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.
Posted by _D r-Ultra on Jan 26th 2023, 9:09PM
Funny little script.
Might be nice to incorporate this into an chrome extension!
Posted by _D r-Ultra on Jan 26th 2023, 9:13PM
Gonna edit your script a little bit. Give me a moment and I'll make it even better!
Posted by _D r-Ultra on Jan 26th 2023, 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.
Posted by Edo on Jan 29th 2023, 10:05AM
pretty sure this can crash low ram websites