1. BrickPlanet Forum
  2. Game & Scripting Discussion
  3. A Script that refresh the shop continously
A Script that refresh the shop continously
Chips
Level 8
Joined Dec 6th 2022
Posts 7
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.
_D r-Ultra
Level 4
Joined Jan 18th 2023
Posts 24
Posted Jan 26th 2023 at 9:09PM
Funny little script.
Might be nice to incorporate this into an chrome extension!
_D r-Ultra
Level 4
Joined Jan 18th 2023
Posts 24
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!
_D r-Ultra
Level 4
Joined Jan 18th 2023
Posts 24
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.
Edo
Level 4
Joined Nov 12th 2022
Posts 151
Posted Jan 29th 2023 at 10:05AM
pretty sure this can crash low ram websites

Search Forum

Thread Info

Replies
4
Views
37
Created Jan 25th 2023
Last Reply Jan 29th 2023