Author

Topic: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐ - page 187. (Read 346438 times)

sr. member
Activity: 974
Merit: 264
Catch the winning spirit!
Thursday's Ethereum lottery (Round 71) draw results:

Place   Nickname       Owned Tickets   Winning Ticket   Chance of winning   Reward in Ethereum
1Blade73715011188.215%3.6520 ETH
2Marl56850014327.382%0.6847 ETH
3Marl56850039027.382%0.2739 ETH


Congratulations to all winners!









Catch the winning spirit!
legendary
Activity: 1750
Merit: 1115
Providing AI/ChatGpt Services - PM!
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.
There's a plinko script that works in a similar way.

Go to plinko page, right click > Inspect Element > Console
Insert this script:
Code:
var autoBet = setInterval(function(){ document.getElementById('plinkoframe').contentWindow.addBallProduction(2); }, 1000);
The number inside addBallProduction() is which ball you are playing:
0 = Green, 1 = Red, 2 = Blue, 3 = Yellow
The number at the end (1000) is the number of ms you want between each roll. 1000 = 1 second. I wouldn't go below 500.
 
To cancel, open the console again and enter
Code:
clearInterval(autoBet);



Once again, courtesy of minifrij, thanks.
Sorry if I'm missing out on anything but being a JavaScript Programmer,we consider injecting code through console which actually manipulates the outcome is taken as a serious security flaw.Unless of course you have taken special steps to prevent the script from the malicious code.Not to mention but languages like ReactJs come with inbuilt components that don't expose the behaviour to the console at all.Anyway,just my two cents.
copper member
Activity: 1904
Merit: 1874
Goodbye, Z.
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.
There's a plinko script that works in a similar way.

Go to plinko page, right click > Inspect Element > Console
Insert this script:
Code:
var autoBet = setInterval(function(){ document.getElementById('plinkoframe').contentWindow.addBallProduction(2); }, 1000);
The number inside addBallProduction() is which ball you are playing:
0 = Green, 1 = Red, 2 = Blue, 3 = Yellow
The number at the end (1000) is the number of ms you want between each roll. 1000 = 1 second. I wouldn't go below 500.
 
To cancel, open the console again and enter
Code:
clearInterval(autoBet);



Once again, courtesy of minifrij, thanks.
legendary
Activity: 1792
Merit: 1283
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
copper member
Activity: 1904
Merit: 1874
Goodbye, Z.
I noticed you have a server update/restart earlier database maintenance today, but it seems that something is not working properly.
Everything that influences numbers and balances is working 100% correctly.
Anything that doesn't work right now is just visualisation of those.

When I go to my affilitates, and I click on 'detailed view of invited players', I get an server error. Can this be fixed?
Yes, with patience. Those numbers are synching right now and the last stage of the maintenance is being processed (the one that doesnt infulence gameplay).
Once that is completed, the site will be back to full functionality.
hero member
Activity: 1008
Merit: 515
Hey Crypto-games,

I noticed you have a server update/restart earlier today, but it seems that something is not working properly.
When I go to my affilitates, and I click on 'detailed view of invited players', I get an server error (which can be seen here: http://prntscr.com/gtnysn.
Can this be fixed? Thanks.
legendary
Activity: 3038
Merit: 1104
This is what I do. I drink and I know things.
Hello there, i have an issue with an XMR deposit of mine.
I contact support through the Zendesk form two days ago and i still didn't receive any answer. Neither any deposit shown in my Account.

Can you tell me how much i have to wait or should i have to make a new ticket/mail to support?
copper member
Activity: 1904
Merit: 1874
Goodbye, Z.
Will investors get Bitcoin Gold later this month?
Wait for the announcement, please.



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
legendary
Activity: 1043
Merit: 1032
★Bitcoin Gambling Reviews★
Will investors get Bitcoin Gold later this month?
legendary
Activity: 1792
Merit: 1283
Is there any chance that you could also add some auto-play functionality to the roulette on Crypto-Games?
I mean, I usually play the same numbers and it would be very very handy if I could just lay back and see that little ball rolling without me having to click that button all the time.

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.

Doesn't have to be anything extensive, just a simple auto-roll feature. And yeah, I know I can install something to click that button automatically already, but there are still some issues with that.

it is called "mouse macro"
You just made an account to post this?
Yeah I know I can use a mouse macro (see text in bold), but it's just handier if there was some built-in functionality for this on the website itself.

Besides, can you even multi-task with a mouse macro running?  
copper member
Activity: 1904
Merit: 1874
Goodbye, Z.
but I see the comment from another user that this URL is down from days ago.
You mean the comment written 2 hours before yours? Nothing was down before the maintenance.




mmm cold wallet seems solid... this gives a little bit of trust but I would like to see movement or signing of messages to be sure.
It would be fairly obvious to claim an address they do not control as cold wallet, for over 2 years.
I guarantee you someone would have noticed that very quickly.
BCH distributions were made from the cold wallets, so any investor with a bigger sum invested can verify this.
legendary
Activity: 1792
Merit: 1283
Is there any chance that you could also add some auto-play functionality to the roulette on Crypto-Games?
I mean, I usually play the same numbers and it would be very very handy if I could just lay back and see that little ball rolling without me having to click that button all the time.

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.

Doesn't have to be anything extensive, just a simple auto-roll feature. And yeah, I know I can install something to click that button automatically already, but there are still some issues with that.
hero member
Activity: 2576
Merit: 883
Freebitco.in Support https://bit.ly/2I9BVS2
mmm cold wallet seems solid... this gives a little bit of trust but I would like to see movement or signing of messages to be sure.
I did not find if there is a way to invest in the casino. There is a link for investor but is not working at this moment. The site is supposedly be down today but I see the comment from another user that this URL is down from days ago.

Can somebody guide me to opt in as an investor?

It's only been down for maintenance since 6am this morning, I looked at my investments a little before that. The site games are back up and you can access the investment page with the details you need. It's just the detailed reports of each individual investment that isn't available while the maintenance continues.
hero member
Activity: 544
Merit: 507
mmm cold wallet seems solid... this gives a little bit of trust but I would like to see movement or signing of messages to be sure.
I did not find if there is a way to invest in the casino. There is a link for investor but is not working at this moment. The site is supposedly be down today but I see the comment from another user that this URL is down from days ago.

Can somebody guide me to opt in as an investor?
hero member
Activity: 2576
Merit: 883
Freebitco.in Support https://bit.ly/2I9BVS2
I used this website and i don't know if it is fair . You nees ro add a way for outside people to check fairness

It's already there. Just click on your Bet ID to bring up the details and there is a link to an external verifier down at the bottom.
newbie
Activity: 19
Merit: 0
I used this website and i don't know if it is fair . You nees ro add a way for outside people to check fairness
member
Activity: 62
Merit: 10
hi there, the casino is under maintenance for while. is that something expected/unexpected?

It's planned maintenance, they had a warning up on the site for while saying it would be going down @ 6am UTC today for a few hours.


roger that
hero member
Activity: 2576
Merit: 883
Freebitco.in Support https://bit.ly/2I9BVS2
hi there, the casino is under maintenance for while. is that something expected/unexpected?

It's planned maintenance, they had a warning up on the site for while saying it would be going down @ 6am UTC today for a few hours.
member
Activity: 62
Merit: 10
hi there, the casino is under maintenance for while. is that something expected/unexpected?
Jump to: