Title: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on May 08, 2017, 11:01:44 PM https://i.imgur.com/FMR08X9.jpg (https://www.etcbets.com/) https://i.imgur.com/QGteraD.png (https://www.etcbets.com/faq) https://i.imgur.com/HGCU1rg.png (https://www.etcbets.com/faq) https://i.imgur.com/6mC2waw.png (https://www.etcbets.com/faq) https://i.imgur.com/ASyxJMj.png (https://twitter.com/ETCbets) Title: Re: Posting for new business transparency, site coming soon .... Post by: Bjorn_Blockchain on May 08, 2017, 11:01:55 PM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain.
2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Title: Re: Posting for new business transparency, site coming soon .... Post by: DiCE1904 on May 08, 2017, 11:26:28 PM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Saved Title: Re: Posting for new business transparency, site coming soon .... Post by: EvilDave on May 08, 2017, 11:38:54 PM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Saved Quoted by me, and all. Hi, BTT peeps :D Title: Re: Posting for new business transparency, site coming soon .... Post by: edmundduke on May 09, 2017, 05:31:06 AM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Saved. Also looking forward to the launch! Title: Re: Posting for new business transparency, site coming soon .... Post by: kryptopojken on May 09, 2017, 06:51:01 AM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Quoted Title: Re: Posting for new business transparency, site coming soon .... Post by: Bassica on May 09, 2017, 04:54:20 PM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Quoted Title: Re: Posting for new business transparency, site coming soon .... Post by: qiwoman2 on May 10, 2017, 05:08:02 AM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. Title: Re: Posting for new business transparency, site coming soon .... Post by: ether19 on May 10, 2017, 09:41:53 AM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. quoted :) Title: Re: Posting for new business transparency, site coming soon .... Post by: 458Italia on May 10, 2017, 04:51:58 PM 1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner. 3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525. The reference code (javascript) is as follows: The method to create the hash chain is simply sha256: Code: function genGameHash(serverSeed) { The method to convert a game hash, mix it with the picked client seed to a game multiplier: Code: function crashPointFromHash(serverSeed, clientSeed) { The chain could be generated with code such as: Code: var serverSecret = 'If you knew this, you could steal all my money'; Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. :) Sweeeeeeeeeeet! Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Etcbets on May 10, 2017, 05:45:16 PM Hi everyone, before someone starting spamming the same question, some things we ´ve planned won´t be fully operational at launch like Parabolic automatic bet feature or 2fa*, but will come later this week.
This is a perfect window of time for our development team to wrap up the features not included at launch, also gives us time to test the site under much greater user bulky. Good luck, and keep playing at ETCBets.com (https://www.etcbets.com) - The ETCBets Team. * We will enable 2fa within 24-48 hours. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: BetterBets.io on May 10, 2017, 06:53:48 PM Confirming this is the same team as BB for transparency. Good fortune to players.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: DiCE1904 on May 10, 2017, 06:54:31 PM Smooth launch guys, site looks great!
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 10, 2017, 09:36:33 PM https://i.imgur.com/1Cjqm0B.png (https://goo.gl/forms/cWtBF2st73t92S0h1)https://i.imgur.com/MFLtkax.png (https://goo.gl/forms/jcTKw67iPYN2g4Pq1) Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Bjorn_Blockchain on May 10, 2017, 10:38:34 PM Smooth launch guys, site looks great! Thanks Dice glad you like 😍 Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: DiCE1904 on May 11, 2017, 01:51:09 AM Don't forget the rakeback on ETCBets while holding some Janus : https://bitcointalk.org/index.php?topic=1677509.msg18960381#msg18960381
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: moooonu on May 11, 2017, 02:32:06 AM I love the graphics of your site but sad I can't register an account there. It's showing "your registration information was incomplete and not be validated. Please try again"
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Raizou on May 11, 2017, 05:08:02 AM Hello Dev, I joined the campaign 2 ETC free, will it take 24 hours to confirm?
The site is very beautiful and nice, congratulations! :o Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gribble on May 11, 2017, 06:02:43 AM It is great gambling game be made on ethereum classic, unfortunately it is still enough because igaming is new service.
Hey OP do you have plan to make promotion about your service in the future? I think it is good ideas for make igaming be popular and many gamblers play on there and it is interesting battle in gaming industry with ethereum. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 11, 2017, 10:57:32 AM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Etcbets on May 11, 2017, 06:21:10 PM I love the graphics of your site but sad I can't register an account there. It's showing "your registration information was incomplete and not be validated. Please try again" We'll be doing a round of bug-fixes tomorrow to address some issues, mainly mobile-related. We'll be sure to take a look at the registration issues which have been reported. Thanks for your patience and understanding; most of this code is brand-new :-) Meanhwile, please try a different browser. Hello Dev, I joined the campaign 2 ETC free, will it take 24 hours to confirm? The site is very beautiful and nice, congratulations! :o Hi Raizou, thank you for your words. Glad you like it. All BONUS were credited during the day, and now CLOSED since we´ve reached the 24 hrs window limit. Good luck, and keep rolling full speed at ETCBets.com (https://etcbets.com) *Parabolic is currently under maintenance. -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: DiCE1904 on May 11, 2017, 11:51:20 PM Happy hour has 9min left!
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Bjorn_Blockchain on May 13, 2017, 02:56:20 AM Parabolic maintenance should not be much longer, most the issues our team is trying to fix are client side and just take a bit longer as they require battery of tests. Thanks for your patience, dice is available still while the other game is in maintenance.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 13, 2017, 04:58:48 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: WarrEagle on May 13, 2017, 08:30:55 PM I received the 2 bonus ETC, congratulations to the Dev site, particularly I do not like to play, because you should never lose control and be manipulated, not to mention the chances of being in favor of the house, but from time to time it is interesting and without Talk about me being a lucky guy! 8) The house has to make profit to stay in business, No casino in the world is going to give the edge to the players. Pretty ridiculous to even say that. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: WarrEagle on May 13, 2017, 08:31:53 PM You should lose that ridiculous mouse trail multi color barf crap. It's pretty annoying and takes away from the experience IMO
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: JanusDev on May 14, 2017, 12:35:08 AM You should lose that ridiculous mouse trail multi color barf crap. It's pretty annoying and takes away from the experience IMO Well, it's only on the home page and from the feedback we've been getting, most people seem to love it ... once you log in, you won't see it anymore, so I would guess that if you don't like it, it's only a minor annoyance. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 14, 2017, 12:39:10 AM https://i.imgur.com/nWjptux.png (https://www.etcbets.com) ETCBets.com (http://ETCBets.com) withdrawals have been re-enabled. *If you are having trouble logging in to the site, clear cookies. Thank you for your understanding. HAVE FUN! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 15, 2017, 06:06:27 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: ArdiPrabowo on May 15, 2017, 11:07:54 PM how much wager can withdraw welcome bonus
sugestion for you, you open thread in gambling section, in post in there is right placed, many gambler can register youre site Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Etcbets on May 16, 2017, 03:56:32 PM how much wager can withdraw welcome bonus sugestion for you, you open thread in gambling section, in post in there is right placed, many gambler can register youre site Hi, The welcome bonus do not have any wager criteria, you can withdrawal anytime you like. :) About open the thread in gambling section, we can´t since this is a altcoin gambling casino and according to Bitcointalk rules* this is the right place. * Any remotely crypto-related board outside the altcoin sections is for Bitcoin only. There sometimes are exceptions if it's both strongly related to Bitcoin and altcoins (e.g. currency exchange involving the conversion of both bitcoin and altcoin to some sort of fiat currency). -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 16, 2017, 05:35:43 PM https://i.imgur.com/cKPv27e.png (https://etcbets.com/app/game/dice)
Come and play at ETCBets.com (http://etcbets.com). Centric, Fast and Reliable provably fair casino gaming for ethereumclassic. Ride it! Help us promoting : https://twitter.com/ETCbets/status/864506688510066693 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 16, 2017, 10:03:17 PM https://i.imgur.com/M9v0eEi.png (https://etcbets.com/app/game/dice)
Enjoy etcbets.com (https://etcbets.com/app/game/dice) HappyHour, and take advantage of the reduction in the House Edge. Extra Hour Bonus IN PLAY! Enjoy. Help us promoting : https://twitter.com/ETCbets/status/864601528526680067 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 17, 2017, 12:59:54 PM https://i.imgur.com/871Ha31.png (https://etcbets.com/app/game/dice) Easy to use and variable makes #dice bets a FLASH! Try the classic autobet at ETCBets.com (http://etcbets.com) HAVE FUN! Help us promoting : https://twitter.com/ETCbets/status/864825850197409792 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 17, 2017, 09:24:23 PM Help us promoting: https://twitter.com/ETCbets/status/864946652280483841 https://i.imgur.com/zbmNuGh.gif https://i.imgur.com/7U8IJkP.gif Take the risk or lose the chance. ETCBets.com (https://etcbets.com), Providing provably fair igaming experience for #ethereumclassic -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 19, 2017, 01:16:15 PM https://i.imgur.com/DNSEAMC.png (https://etcbets.com/app/game/dice)
HAVE FUN! Help us promoting : https://twitter.com/ETCbets/status/865552396889370624 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: chickenado on May 19, 2017, 02:13:07 PM Hi ETCbets com
Why I can't play in your site? It's always says " Sorry, Parabolic is currently under maintenance." After I register in your site it's always maintenance. Until now? I want to try your site and bet. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 19, 2017, 06:29:22 PM Hi ETCbets com Why I can't play in your site? It's always says " Sorry, Parabolic is currently under maintenance." After I register in your site it's always maintenance. Until now? I want to try your site and bet. Hi chickenado, after sign-in you will need to click on dashboard | dice game. Parabolic is currently under maintenance, but will be back very soon. https://i.imgur.com/H1lYvkF.png (https://etcbets.com/app/game/dice) I hope to meet you in the chat. :) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 21, 2017, 01:11:46 PM https://i.imgur.com/b3k0bjM.png (https://etcbets.com/app/game/dice) Help us promoting: https://twitter.com/ETCbets/status/866278070122164226 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: qiwoman2 on May 24, 2017, 06:28:36 AM I really like the site layout and hope the ETC community are enjoying their new toy..
I am also promoting a bit: https://www.facebook.com/elle.yan.7/posts/1324196124330646?pnref=story https://twitter.com/goldentags/status/867259888602316800 Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Etcbets on May 24, 2017, 09:00:42 AM Hi everyone,
Our team is wrapping up some fixes and changes for the ETC casino ETCBets.com (http://www.etcbets.com) Major items are: 1. Parabolic game up and running with several upgrades and fixes; 2. Auto bet enabled on Parabolic; 3. Several mobile UI changes; 4. June launch of promotion bonuses and contests. More details will follow soon, remember the site donates 10% monthly income to the two ETC development teams (5% per team). Let's make this business a big success for ETC use case and entertainment. Get registered today and test out dice while waiting for the second game and upgrades to go live later this week. Follow the Twitter account for up to date news: https://twitter.com/ETCbets https://twitter.com/ETCbets/status/867311008586629121 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: DiCE1904 on May 26, 2017, 04:26:02 AM Cant wait for the parabolic auto bet to go live
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 26, 2017, 05:47:09 PM https://i.imgur.com/0jGHHwj.png (https://etcbets.com/)
Help us promoting:: https://twitter.com/ETCbets/status/868157934626275329 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 29, 2017, 08:02:43 PM https://i.imgur.com/PUValgN.png (https://etcbets.com) Creating ETCBets.com (http://www.etcbets.com) was giving a use-case for $ETC, revenue source for all parties, and opening icebreaker for more. Twitter: https://twitter.com/Janus_Token/status/869065371449511936 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 30, 2017, 12:34:56 AM https://i.imgur.com/z6okLh7.png (https://etcbets.com/app/game/parabolic) Help us promoting: https://twitter.com/ETCbets/status/869350190720876544 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 30, 2017, 10:40:30 AM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 31, 2017, 10:17:10 AM https://i.imgur.com/vxjzwGx.png (https://etcbets.com/app/game/parabolic) JUNE will be awesome! STAY TUNE! Help us promoting: https://twitter.com/ETCbets/status/869857292212162561 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: NLNico on May 31, 2017, 03:26:57 PM Strange, cannot connect to Parabolic socket, disconnects right away (Opcode -1.) Chrome/Firefox/Guest/User all doesn't matter.. as if my IP is banned or something :P
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Etcbets on May 31, 2017, 04:51:53 PM Strange, cannot connect to Parabolic socket, disconnects right away (Opcode -1.) Chrome/Firefox/Guest/User all doesn't matter.. as if my IP is banned or something :P Hi, NLNico I redirected your concerns to our main developer. We´ll be back to you asap. -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: JanusDev on May 31, 2017, 07:53:24 PM Strange, cannot connect to Parabolic socket, disconnects right away (Opcode -1.) Chrome/Firefox/Guest/User all doesn't matter.. as if my IP is banned or something :P Can you see the live game animation (not the trippy background fluid dynamics animation) on the homepage or are you getting "attempting to connect..." there as well? Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 31, 2017, 10:05:34 PM https://i.imgur.com/M9v0eEi.png (https://etcbets.com/app/game/dice) Why limit #happyhour to an hour? We've added an extra hour just for fun! Join us NOW at etcbets.com (https://etcbets.com/app/game/dice) HAVE FUN! Help us promoting : https://twitter.com/ETCbets/status/870037243041329153 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 31, 2017, 10:37:24 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: gordonhill on May 31, 2017, 11:32:51 PM https://i.imgur.com/VQtpjD7.png (https://etcbets.com/app/game/parabolic) Join thread to participate in the contest: https://bitcointalk.org/index.php?topic=1943352.0 ENJOY THE FIREWORKS PEOPLE! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: NLNico on June 01, 2017, 03:51:55 AM Strange, cannot connect to Parabolic socket, disconnects right away (Opcode -1.) Chrome/Firefox/Guest/User all doesn't matter.. as if my IP is banned or something :P Can you see the live game animation (not the trippy background fluid dynamics animation) on the homepage or are you getting "attempting to connect..." there as well? https://i.imgur.com/G6zYoQt.png As you can see, the chat socket works fine. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: JanusDev on June 01, 2017, 07:16:34 AM Strange, cannot connect to Parabolic socket, disconnects right away (Opcode -1.) Chrome/Firefox/Guest/User all doesn't matter.. as if my IP is banned or something :P Can you see the live game animation (not the trippy background fluid dynamics animation) on the homepage or are you getting "attempting to connect..." there as well? https://i.imgur.com/G6zYoQt.png As you can see, the chat socket works fine. I really don't know what to tell you ... this is really weird. You're the first person to report a problem with this, we haven't had any other reports of connectivity issues. I'm assuming you visted our site for the first time this week ... if not, maybe a ctrl-reload helps (I'm sure you know this, I'm just mentioning it for completeness sake). If you catch me on skype, I can look at what the server is doing when you try to connect. I'm not sure this will turn up useful info, but it's worth a try. Greetings Lobos Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: NLNico on June 01, 2017, 07:28:58 AM Works in Chrome now. Not in FF, but ah well :P
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 02, 2017, 10:24:53 AM https://i.imgur.com/IEfzWiQ.png (https://etcbets.com/app/game/parabolic) Thread contest : https://bitcointalk.org/index.php?topic=1943352.0 -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 03, 2017, 11:19:03 AM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: CrackDown on June 03, 2017, 11:06:13 PM password doesnt work, i can not register...
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 04, 2017, 09:35:24 AM password doesnt work, i can not register... Hi CrackDown, I must assume you are trying to logged in and not register, because I saw you yesterday on chat. Anyway, as you know passwords are case sensitive, be sure you´re carefully checking the numbers of letters/ caps... Alternative you can always use the "forgot your password". If the problem persists, please contacts us through PM or etcbets@gmail.com - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 04, 2017, 10:10:59 AM https://i.imgur.com/qE0CBSL.png (https://etcbets.com/app/game/parabolic) It seems the variance is in favor of our players ;D Don´t forget to check the Daily multiplier Contest :: https://bitcointalk.org/index.php?topic=1943352.0 Join us NOW!! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 04, 2017, 05:17:32 PM https://i.imgur.com/MXQu3Mt.png (https://etcbets.com/app/game/parabolic) "Inhale courage, exhaled fear". Join us today at ETCBets.com (http://etcbets.com/app/game/parabolic), and live in all CAPS. You´re worth it! #lifestyle #ethereumclassic -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: imutzz on June 05, 2017, 01:23:04 AM nice to joined in sweet game..
username :auzaku Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: imutzz on June 05, 2017, 01:27:58 AM https://i.imgur.com/0jGHHwj.png (https://etcbets.com/) Help us promoting:: https://twitter.com/ETCbets/status/868157934626275329 -The ETCBets Team i like to promoted https://twitter.com/imut_auzora/status/871538901977923584 Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 06, 2017, 01:02:03 PM https://i.imgur.com/D7HBFoE.png (https://etcbets.com/app/game/parabolic) "A Man knows his limits, but a wise Man knows he has none". ETCBets.com (http://ETCBets.com/app/game/parabolic) , the 1st #ethereumclassic casino. JOIN US! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 06, 2017, 06:59:56 PM https://i.imgur.com/WV4PIIV.png (https://etcbets.com/app/game/dice) Nothing is worth it if you aren´t happy! Extra hour is still open. Visit us at ETCBets.com (http://etcbets.com) . Daily multiplier Contest :: https://bitcointalk.org/index.php?topic=1943352.0 HAVE FUN! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: emsjvh on June 07, 2017, 01:17:19 AM like the site's graphics.
is it possible for me to play in doge-coin and make wagers in dogecoin? what has your highest win/loss streaks been so far? Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: Cazkys on June 07, 2017, 06:34:16 AM I just registered a while ago, damn the graphics and interface is superb! I have nothing to say. By the way I would like to ask few questions;
1. What is the minimum amount to withdraw? 2. What is minimum amount to deposit? 3. Is there a faucet on your site? 4. Is there a "First Deposit Bonus" when I will make my first deposit? 5. Is there an affiliate program? That's all~ Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 07, 2017, 08:17:35 AM I just registered a while ago, damn the graphics and interface is superb! I have nothing to say. By the way I would like to ask few questions; 1. What is the minimum amount to withdraw? 2. What is minimum amount to deposit? 3. Is there a faucet on your site? 4. Is there a "First Deposit Bonus" when I will make my first deposit? 5. Is there an affiliate program? That's all~ Hi, Cazkys thanks for you kindly words. :) Answer directly to your questions: 1. No, although we´ve a fee of 0.00100000 ETC. 2. No. 3. No. Maybe in the future, depending on how the site evolved. 4. No. We´d a one time Free Bonus at the beginning for ETC and JNS @slack users. 5. No. Like faucet, maybe in a near future... Feel free to check our available contests: Daily multiplier Contest :: https://bitcointalk.org/index.php?topic=1943352.0 Monthly wager contest :: https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898 - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 07, 2017, 09:56:49 AM like the site's graphics. is it possible for me to play in doge-coin and make wagers in dogecoin? what has your highest win/loss streaks been so far? Hi, emsjvh thank you for your words. :) No, our goal is to provide a safe, entertaining, and community focused site to gamble using Ethereum classic tokens. -snip what has your highest win/loss streaks been so far? I leave this answer to our players. ;D - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 08, 2017, 01:25:30 PM https://i.imgur.com/m1cnvV3.png (https://etcbets.com/app/game/parabolic) Join our #contests for a chance to win #gifts cards and daily $ETC prizes. ETCBets.com (http://ETCBets.com/app/game/parabolic) , the 1st #ethereumclassic gambling casino. 10% of site profits will be donated to the Ethereum Classic development team. Daily contest: https://bitcointalk.org/index.php?topic=1943352.0 HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 10, 2017, 02:50:08 PM https://i.imgur.com/B4XrvBE.png (https://etcbets.com/app/game/parabolic) Daily contest: https://bitcointalk.org/index.php?topic=1943352.0 HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: illseey on June 11, 2017, 05:42:29 PM Nevermind. Good luck everyone with this website, smh.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: Bjorn_Blockchain on June 12, 2017, 04:56:48 AM Great entertainment site using Ethereum classic. The first to give a use to it beyond trading speculation. Create an account in 30 seconds.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 12, 2017, 10:17:38 AM https://i.imgur.com/WIrTyVH.png (https://etcbets.com/app/game/parabolic) Daily contest: https://bitcointalk.org/index.php?topic=1943352.0 HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 13, 2017, 08:13:48 PM CONGRATZ TO ✪ Ropes ✪, for the amazing win streak. He just won over 500 $ETC ;D https://i.imgur.com/Yr2VUol.png (https://etcbets.com/app/game/parabolic) Don´t forget to check the 2 contests for this month.! Daily contest: https://bitcointalk.org/index.php?topic=1943352.0 Monthly contest: https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898 Join us NOW at etcbets.com (https://etcbets.com/app/game/dice) HAVE FUN! Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 14, 2017, 12:43:32 PM https://i.imgur.com/34MZNGT.png (https://etcbets.com/app/game/parabolic) ETCBets.com (https://etcbets.com/app/game/parabolic) is mobile friendly optimized to work across all devices from smartphones to tablets and desk PC. #PlayAnywhere (https://etcbets.com/app/game/parabolic) $ETC HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic Post by: Bjorn_Blockchain on June 16, 2017, 03:55:37 AM Great contest half a month to go now. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 16, 2017, 01:14:18 PM https://i.imgur.com/MBfkvCz.png (https://etcbets.com/app/game/parabolic) Join our Monthly Wager #contest (https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898) for a chance to win #gift cards or $BTC totaling $900 prizes. https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898 PLAY NOW! ETCBets.com (http://ETCBets.com), the 1st #EthereumClassic casino. -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 18, 2017, 11:37:25 AM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 18, 2017, 03:36:19 PM https://i.imgur.com/R3Mc6by.png (https://bot.seuntjie.com/botpage.aspx) DOWNLOAD THE NEWEST 3.3.5. VERSION (https://bot.seuntjie.com/botpage.aspx?id=49) ::ETCBets.com (https://www.etcbets.com/app/game/parabolic) included in this version:: Keep supporting good developments!! - The ETCBets Team Cheers!! ●‿● Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 19, 2017, 10:03:33 PM https://i.imgur.com/WV4PIIV.png (https://etcbets.com/app/game/dice) Join us at ETCBets.com (http://etcbets.com) . HAVE FUN! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: Space3003 on June 20, 2017, 01:33:06 AM Whats min.bet ? etc 0.00000100 ? (100 etctoshi..)
are there speedlimits when playing with small amounts like this with DiceBot? max 1 or 2 bet a sec.? Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 20, 2017, 11:00:06 AM Whats min.bet ? etc 0.00000100 ? (100 etctoshi..) are there speedlimits when playing with small amounts like this with DiceBot? max 1 or 2 bet a sec.? Hi, Space3003 Min bet is 100 etctoshi, and there is no speed limits or any sort of cap. On-site the bet speed can go up to 20 bets per sec with a good connection. - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 20, 2017, 12:15:55 PM https://i.imgur.com/9bIvK7y.png (https://etcbets.com/app/game/parabolic) 10% of site profits will be donated to the Ethereum Classic development team. Check the Monthly contest: https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898 Join us NOW at etcbets.com (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/parabolic) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: p4nt5 on June 20, 2017, 04:23:47 PM When i try to login, it says "Account currently inactive, please contact support" i cannot find a support contact on the site. Can you help me, as i have funds on your site that i currently cannont access.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 20, 2017, 05:06:40 PM When i try to login, it says "Account currently inactive, please contact support" i cannot find a support contact on the site. Can you help me, as i have funds on your site that i currently cannont access. Hi, p4nt5. Your issue will be fixed ASAP. Thanks for your understanding. - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: p4nt5 on June 20, 2017, 08:11:55 PM When i try to login, it says "Account currently inactive, please contact support" i cannot find a support contact on the site. Can you help me, as i have funds on your site that i currently cannont access. All taken care of, thanks for the quick service. Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 22, 2017, 11:32:34 AM https://i.imgur.com/Yis6bXP.png (https://etcbets.com/app/game/parabolic) In a world full of trends stay #Classic. ETCBets.com (https://etcbets.com/app/game/parabolic) providing provably fair experience for #ethereumclassic. Play NOW! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 23, 2017, 01:59:37 PM ----HOW TO PLAY AT ETCBETS.COM (https://etcbets.com/app/game/parabolic) USING SEUNTJIE BOT---- To use Seuntjie's bot (https://bot.seuntjie.com/Downloads.aspx) just enable the API under "Edit your account" (https://etcbets.com/app/game/parabolic) tab on ETCBets.com (https://etcbets.com/app/game/parabolic) (make sure you hit the save button), https://i.imgur.com/DSUXcte.png (https://etcbets.com/app/game/parabolic) Copy the API string of characters into the appropriate field on the bot program and configure your betting strategy there. Open seuntjieBot| Choose site | EtcBets| Username and API | Login and have fun https://i.imgur.com/FmLAbVv.png (https://etcbets.com/app/game/parabolic) Check tutorial: https://bot.seuntjie.com/GettingStarted.aspx Yours in business, -The ETCBets team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 26, 2017, 12:36:35 AM https://i.imgur.com/5Qc3hWh.png (https://etcbets.com/app/game/parabolic) Check the Monthly contest: https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898 -- Last days for a chance to win #gifts cards or $BTC totaling $900 prizes.-- Join us NOW at etcbets.com (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/parabolic) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 27, 2017, 11:54:49 AM https://i.imgur.com/cdSuZWF.png (https://etcbets.com/app/game/parabolic) #PlayAnywhere (https://etcbets.com/app/game/parabolic) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: Bjorn_Blockchain on June 29, 2017, 02:24:43 PM Only couple days left to win the gift cards for monthly wager volume!
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 30, 2017, 12:02:22 PM ::1 DAY LEFT:: https://i.imgur.com/3xCfBlI.png (https://etcbets.com/app/game/parabolic) 1 day left to win gift cards from gyft.com (http://gyft.com). Be the top volume player on ETCBets.com (http://ETCBets.com) #PlayAnywhere (http://ETCBets.com) -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on June 30, 2017, 10:53:21 PM https://i.imgur.com/8TxXOIR.png (https://www.etcbets.com/app/game/dice) Meanwhile, you can play Dice (https://www.etcbets.com/app/game/dice) game. #PlayAnywhere (https://etcbets.com/app/game/parabolic) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on July 01, 2017, 10:39:46 AM MONTHLY VOLUME LEADERBOARD :: FINAL RESULTS:: https://i.imgur.com/Vb2OEn8.png (https://etcbets.com/app/game/dice) Winners of the monthly contest, please follow instructions: 1. Choose gift cards from gyft.com (https://www.gyft.com/); 2. Send us your pick choice via email ( etcbets@gmail.com); 3. Code to redeem will be mailed back. Congratulations to all our winners! -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - June contest Post by: gordonhill on July 01, 2017, 05:51:36 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - July contest Post by: gordonhill on July 01, 2017, 08:18:54 PM CONGRATZ to :: Ropes :: He just won over 8,000USD worth of $ETC today https://i.imgur.com/9bXuPZE.png (https://etcbets.com/app/game/dice) Join us NOW at etcbets.com (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/parabolic) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - July contest Post by: gordonhill on July 02, 2017, 01:59:13 PM https://i.imgur.com/itMaUUV.png (https://etcbets.com/app/game/dice) DOWNLOAD THE NEWEST 3.3.5. VERSION (https://bot.seuntjie.com/botpage.aspx?id=49) of SeuntjieBot if you want a full customizable dice bot. ::ETCBets.com (https://www.etcbets.com/app/game/parabolic) included in this version:: #PlayAnywhere (https://etcbets.com/app/game/dice) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - July contest Post by: gordonhill on July 03, 2017, 12:03:16 AM https://i.imgur.com/MnZvNTf.png (https://www.facebook.com/ETCBetscom-812414705594691) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - July contest Post by: gordonhill on July 04, 2017, 12:49:28 PM https://i.imgur.com/Wy7BOVU.png (https://etcbets.com/app/game/dice) Check the Monthly contest: https://bitcointalk.org/index.php?topic=1907827.msg19882284#msg19882284 #PlayAnywhere (https://etcbets.com/app/game/dice) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - July contest Post by: gordonhill on July 16, 2017, 11:39:36 AM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic - July contest Post by: gordonhill on July 18, 2017, 02:54:25 PM https://i.imgur.com/TRUksbt.png (https://etcbets.com/app/game/dice) We´ve re-opened #dice game. Improvements in performance and security. #Parabolic game will come next. #PlayAnywhere (https://etcbets.com/app/game/dice) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 19, 2017, 10:54:03 AM https://i.imgur.com/wPTDgcX.png (https://etcbets.com/app/game/dice) Don´t get older, just level up". ETCBets.com (https://etcbets.com/app/game/dice) , providing provably fair #gaming experience for #ethereumclassic #PlayAnywhere (https://etcbets.com/app/game/dice) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 21, 2017, 01:00:33 PM https://i.imgur.com/oYKY0q9.png (https://etcbets.com/app/game/dice) Enjoy the blistering fast betting speed of our powerful #Classic bot. @SeuntjieDiceBot (https://bot.seuntjie.com/Downloads.aspx) ON #ethereumclassic #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: xusxuquade on July 21, 2017, 01:53:55 PM is good the first gambling site use ETC
but why not create thread in gambling section, only create in service announcment altcoin section Reply Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: Etcbets on July 21, 2017, 09:12:08 PM is good the first gambling site use ETC but why not create thread in gambling section, only create in service announcment altcoin section Reply Hi xusxuquade, We already answered that question, this is an altcoin gambling casino and according to Bitcointalk rules * this is the right place. * Any remotely crypto-related board outside the altcoin sections is for Bitcoin only. There sometimes are exceptions if it's both strongly related to Bitcoin and altcoins (e.g. currency exchange involving the conversion of both bitcoin and altcoin to some sort of fiat currency). -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: Sir Legend on July 22, 2017, 04:02:57 AM I have ethereum classic balance,
Good project, I like gambling and I should try ETCBets.com if it proves to be fair, easy to deposits and withdrawal. I want to know, whether we can invest here? Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 22, 2017, 10:19:16 AM I have ethereum classic balance, Good project, I like gambling and I should try ETCBets.com if it proves to be fair, easy to deposits and withdrawal. I want to know, whether we can invest here? Hi Sir Legend, thank you for the kind words. Currently, we are not taking open investment. In the future this may change if player demand for a much larger bankroll occurs. - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 24, 2017, 10:07:25 AM https://i.imgur.com/eSlzRa4.png (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 26, 2017, 10:24:18 AM https://i.imgur.com/buqjY9X.png (https://etcbets.com/app/game/dice) ...You always have a choice". ETCBets.com (https://etcbets.com/app/game/dice) :: provably fair social #gaming experience for #ethereumclassic #PlayAnywhere (https://etcbets.com/app/game/dice) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 27, 2017, 06:10:55 PM https://i.imgur.com/giWx6mU.png (https://etcbets.com/app/game/dice) Feel the immersive experience of this powerful Autobot betting. Full customizable! Real time! #PlayNow (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) at ETCBets.com (https://etcbets.com/app/game/dice) #dice $ETC HAVE FUN! ------------------------------------------- - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 28, 2017, 07:33:30 PM https://i.imgur.com/KkpNJlZ.png (https://info.shapeshift.io/blog/2017/07/27/important-bitcoin-hard-fork-information) https://info.shapeshift.io/blog/2017/07/27/important-bitcoin-hard-fork-information Please act accordingly. Yours in business, -The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 31, 2017, 11:03:55 AM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: qiman on July 31, 2017, 05:27:44 PM I really like your banner and as a hardcore JANUS HOLDER I would like to ask do you have a vertical banner for ETCBETS? OR A 125 X 125 square banner? My Wife has a blog and she could promote it on her blog for more exposure? It is another way to get the word out.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on July 31, 2017, 10:20:58 PM I really like your banner and as a hardcore JANUS HOLDER I would like to ask do you have a vertical banner for ETCBETS? OR A 125 X 125 square banner? My Wife has a blog and she could promote it on her blog for more exposure? It is another way to get the word out. Hi, qiman Maybe this 2: https://i.imgur.com/LxO7SF8.gif https://i.imgur.com/hrgU4xG.png Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 01, 2017, 06:26:09 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 03, 2017, 10:09:59 PM https://i.imgur.com/TRUksbt.png (https://etcbets.com/app/game/dice) We´ve re-opened #dice game. #PlayAnywhere (https://etcbets.com/app/game/dice) HAVE FUN! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: fatman314 on August 06, 2017, 02:01:07 AM Is the site down? My deposits are not going through Thanks!
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 06, 2017, 12:42:15 PM Is the site down? My deposits are not going through Thanks! Hi fatman314, deposits will be processed soonish. ETC blockchain needed a full rescan. Sorry for any inconvenience. edit: deposits back to normal and credited. - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 08, 2017, 11:19:54 AM https://i.imgur.com/bqK44CN.png (https://etcbets.com/app/game/dice) Shake it off " (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 10, 2017, 01:14:48 PM https://i.imgur.com/y6X4z4u.png (https://etcbets.com/app/game/dice) With you, is different". (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 10, 2017, 10:16:14 PM https://i.imgur.com/39JQkyM.png (https://etcbets.com/app/game/dice) Why limit #happyhour to an hour? (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: serby10101010001100010 on August 11, 2017, 04:32:50 PM I have successfully deposited and withdrew ETCs from EtcBets. Highly recommended.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 13, 2017, 11:41:03 AM https://i.imgur.com/R3Mc6by.png (https://bot.seuntjie.com/botpage.aspx) DOWNLOAD THE NEWEST 3.3.8. VERSION (https://bot.seuntjie.com/botpage.aspx?id=49) ::ETCBets.com (https://www.etcbets.com/app/game/parabolic) included in this version:: Keep supporting good developments!! - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 16, 2017, 02:12:45 PM https://i.imgur.com/zYZJSuD.png (https://etcbets.com/app/game/dice) ...Faster, faster, until the thrill of #Classic bot speed overcomes the fear of bust. (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: indralit on August 16, 2017, 03:30:30 PM great and fast dice but deposit sometimes delay 1hour+ :'(
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: Etcbets on August 19, 2017, 02:49:48 PM great and fast dice but deposit sometimes delay 1hour+ :'( Hi indralit, it´s a problem that bypasses us. Many things going on EthereumClassic platform, which in IMO not a bad thing at all.! ;) Best regards. - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 21, 2017, 12:34:26 AM https://i.imgur.com/j0OQS8L.png (https://etcbets.com/app/game/dice) Don´t be afraid to fail. Be afraid not to try it. " ETCBets.com (https://etcbets.com/app/game/dice) , the 1st provably fair gaming experience for #ethereumclassic. #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 23, 2017, 12:39:32 PM https://i.imgur.com/fJS4Whv.png (https://etcbets.com/app/game/dice) Life´s a #game, all you have to do, is know how to play it. Roll the #dice JOIN US! #PlayAnywhere (https://etcbets.com/app/game/dice) - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 28, 2017, 12:44:55 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 28, 2017, 04:39:28 PM Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on August 29, 2017, 12:45:46 PM ::ATTENTION:: https://i.imgur.com/CNGeiRJ.png (https://etcbets.com/app/game/dice) Yours in business, - The ETCBets Team Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: monica69 on September 04, 2017, 07:13:35 PM what happned at your site? id down? is death? re-open the site? if yes...when?
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: gordonhill on September 06, 2017, 12:21:30 PM what happned at your site? id down? is death? re-open the site? if yes...when? Hi, Our team decided to close the site mainly because of the need to prioritize resources elsewhere at this stage of our plans. Regards, -Luis Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic Post by: CobraJ on July 24, 2018, 02:55:09 AM Interesting stuff.
Is there a dappradar.com for ETC based dapps by the way? |