Post
Topic
Board Gambling
Re: ★Crypto-Games.net ★ 10 coins ★ 7 games ★ Since 2014 ★ Largest Crowdfunded Casino
by
eternalgloom
on 05/10/2017, 18:38:07 UTC
Is there any chance that you could also add some auto-play functionality to the roulette on Crypto-Games?
I don't think there's a bot available for this, right? Even if there was, I'm not a big fan of having to install an app on my pc just for this.
You can use the in-browser console to set up a simple auto betting.
Place your chips on the numbers you want to bet, then open the console (via right click on the game table) and enter
Code:
var autoBet = setInterval(spin, 1000);
Once you want to stop betting, enter
Code:
clearInterval(autoBet);
The 1000 is the delay in this case, which you can increase to slow down your autobet, but shouldn't decrease.

Credits to minifrij for this quick and easy script Smiley
Thanks, that actually solves it completely, can still use my mouse when doing this at least Smiley
For anyone else interested: right click on game table > click on 'inspect element' (Chrome) > click on the console tab.

Had to add that you have to click on 'inspect element' first, in case it isn't obvious Wink