Post
Topic
Board Gambling
Re: ★ Crypto-Games.net ★ Ethereum Classic added ★ Huge wagering contest ★
by
TheQuin
on 31/07/2018, 07:54:08 UTC
Would you guys ever consider adding an auto roll for the roulette?

I am pretty sure there is no point in adding auto roll for roulette. If you want to use auto roll like that you might as well use dice instead.

Roulette is more of a funner game than dice and that's why in a physical casino you usually have a Roulette table and no such thing as a dice table.

Whatever odds you are going for, you might as well configure your dice wagering and percentage and its kind of like dice. Basically no different than the people who want to play the lotto when they can just play dice on 9900x.

I'm thinking it would be more for people who play certain number(s) or maybe are trying for the jackpot or something. It would get tiring and repetitive to keep clicking a few hundred times. If you never change the settings you bet with it would make it easier if there was an auto roll. Just a suggestion though. I don't really play much roulette so it doesn't matter to me one way or another Smiley

There is a way to do it, although it lacks a stop on win that would be useful when chasing a single number.

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