Skip to content

Instantly share code, notes, and snippets.

@ruzli
Created August 20, 2023 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruzli/4b32e2f4ad7669681cebb7f4a8a4b4a6 to your computer and use it in GitHub Desktop.
Save ruzli/4b32e2f4ad7669681cebb7f4a8a4b4a6 to your computer and use it in GitHub Desktop.
Fast rolling script for ultimate dice
stop = (() => {
let running;
function bet() {
return prod.bet(prod.amount)
}
(function() {
running = setInterval(bet, 1);
})()
function stop() {
clearInterval(running);
}
return stop;
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment