Bitcoin Forum

Economy => Gambling => Topic started by: baumi on January 02, 2015, 10:18:37 AM



Title: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 10:18:37 AM
 http://www.image-share.com/upload/2807/19.png (http://coinxerox.com/dice)

We are proud to introduce a new game at CoinXerox - Dice game.


Features
Free Bitcoins - no captcha but Tic Tac Toe
1% House Edge
Provably Fair
Automated Betting - Martingale, Labouchère, Reverse Labouchère, Fibonacci
Bot scripting - create your own betting strategy straight in web browser
Instant Play - no downloads, one confirmation for deposit
Secure - no Bitcoins are stored on server
Zero Click Registration

 http://www.image-share.com/upload/2807/232.png (http://coinxerox.com/dice)


Betting Strategies
Currently there are available following betting strategies:
  • Martingale - on previous bet win/loss increase/decrease bet size.
  • Labouchère - specify how much do you want to win. Betting strategy splits your plan of winnings in pre-defined number of bets. When loss occured, Martingale system starts to dispose of that loss.
  • Reverse Labouchère - as name suggests, at first you specify how much do you may loss. This maximum will not be exceeded. System never place huge bet, because this system effectively resets itself when bets start to get higher. The losses are fixed.
  • Fibonacci - using Fibonacci sequence (1, 1, 2, 3, 5, 8, 13, ...). Less aggressive than popular Martingale, thus it's more stable and does not require as large bankroll as Martingale.

Bot Scripting
CoinXerox Dice game offers you a possibility to create your own bot just in your web browser by simple and flexible way.
To start just a very basic knowledge of the JavaScript programming language is required. All difficult aspects of bot creating are hidden behind exposed API.
Please note that betting strategies mentioned above are implemented in the same way as described below and its source codes are available to learn and reuse.

Let's create Crazy Bot as example.
It will ask a user for how many percent of account balance does he/she want to bet at minimum and maximum. Then it's going to bet a random amount from this range on random predicted value. Bot will do that indefinitely, until user stop it.

The following shows you complete code for such bot:
Code:
strategy.parameters = {
    'minBalance': 'percent',
    'maxBalance': 'percent'
};
strategy.onStart = function () {
    if (this.parameters.minBalance >= this.parameters.maxBalance) {
        throw 'Min Balance should be less then Max Balance.';
    }
};
strategy.onBet = function() {
    var balance = this.getBalance();
    var minAmount = this.parameters.minBalance * balance;
    var maxAmount = this.parameters.maxBalance * balance;

    return {
        amount: minAmount + (maxAmount - minAmount) * Math.random(),
        prediction: 1 + 96 * Math.random()
    };
};

strategy.parameters defines input parameters to ask a user for.
strategy.onStart() function performs validation of user entered values.
strategy.onBet() function is body of betting strategy. It simply queries for current user account balance and then bet a random proportion of the balance on a random prediction (rolled number).

For complete documentation and API reference go to Botting > Create Bot & API Help section.

Any feedback is highly appreciated!

CoinXerox.com/dice (http://coinxerox.com/dice)

Please use this thread for any questions or feedback or email us at support@coinxerox.com


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: sandykho47 on January 02, 2015, 10:35:01 AM
The Tic Tac Toe somehow hard & only got 500 satoshi  :(
And sometimes my balance become 0

But, i like the UI  :)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 10:50:48 AM
The Tic Tac Toe somehow hard & only got 500 satoshi  :(
And sometimes my balance become 0

But, i like the UI  :)

Thanks. The Tic Tac Toe is not as hard as you might think. After a few games you will find out a trick how to defeat the machine. Hint: its goal is not to defeat you, but slow you down by blocking.

500 satoshi is not enough? You must "copy" it at CoinXerox :)  What do you think is enough?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Clint on January 02, 2015, 10:54:15 AM
solitaire game doesnt work? or is it only on me?

EDIT: all games doesnt work on me.. :-\


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 10:59:50 AM
solitaire game doesnt work? or is it only on me?

Solitaire game is working now. Maybe you input wrong stake. If you play for free Bitcions, you must input 0.005 mBTC at maximum not 1.

EDIT: Can you be more accurate what is not working for you. I just test it and games are working without any problems.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: sandykho47 on January 02, 2015, 11:10:00 AM
I just notice this site have 8 games  ;D
I think this site only have dice game

You should show it at first pages
So, nobody will confuse like me

Will you open a signature campaign soon ?
To promote your site


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: choZin on January 02, 2015, 11:15:30 AM
cool like this game and the way to get free faucet  :D


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Holderbert on January 02, 2015, 11:24:57 AM
cool like this game and the way to get free faucet  :D
Idk the tictactoe game is kinda weird.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Watoshi-Dimobuto on January 02, 2015, 11:32:11 AM
I like the UI and design.

The bots are good too. :)
I will try this soon.

I get the impression of rollin.io partially. But I think this one got more.

I have no idea what labochere thing is. Will google it...


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 11:33:53 AM
cool like this game and the way to get free faucet  :D
Idk the tictactoe game is kinda weird.

We believe it's much more fun to play Tic Tac Toe than rewrite malformed, unreadable captcha text. Especially at a game server  ;)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: james.lent on January 02, 2015, 11:52:31 AM
Absolutely love the tic tac toe faucet  ;D ;D ;D ;D


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: suman66 on January 02, 2015, 11:57:03 AM
nice design of website i like the design of faucet i will play more in the site


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: febriyana on January 02, 2015, 03:18:58 PM
How many minimum payout in that site?
I try payout 0.1 mB, but always error


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 03:27:21 PM
How many minimum payout in that site?
I try payout 0.1 mB, but always error

Current withdraw limit is 10 mBTC and no transaction fee.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: joksim299 on January 02, 2015, 03:40:22 PM
Really nice design! Will try and post here.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: suman66 on January 02, 2015, 03:41:13 PM
How many minimum payout in that site?
I try payout 0.1 mB, but always error

Current withdraw limit is 10 mBTC and no transaction fee.

very high minimum payout please decrease it some users want to test your site so we need to deposit more than 10 mbtc this is not ok


Design of website is good


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: kusumadewi on January 02, 2015, 03:59:00 PM
is there any free btc to try your site sir ?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 04:15:12 PM
is there any free btc to try your site sir ?

Of course, at page header there is "Get Free Bitcions" button. You have to play and win Tic Tac Toe match. Then free Bitcoins will be credited to your account. (Don't worry, the machine is not Tic Tac Toe maniac.)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 04:23:58 PM
How many minimum payout in that site?
I try payout 0.1 mB, but always error

Current withdraw limit is 10 mBTC and no transaction fee.

very high minimum payout please decrease it some users want to test your site so we need to deposit more than 10 mbtc this is not ok


Design of website is good

For testing / micro-gaming purpose there is Free Bitcions option. But we will lower the min. limit to 1 or 0.5 mBTC.

Thanks for your suggestion.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: panjul07 on January 02, 2015, 04:27:21 PM
Nice Interface.

Bad faucet (both amount and game)

High Minimal Payout.



Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: edmundduke on January 02, 2015, 05:10:27 PM
From spending 15 minutes on the site:

The good

1) Really good faucet, something different from the captchas. And the amount is fine also, ignore the self-entitled beggers who believe they should be given free money every step of the way. They do not understand that the faucet is there just to show how the games work.
2) Multiple games

Cons

1) Switching from BTC to playmoney bugs out from time to time. When it thinks you make a bet that is too big (for example 900 PLM, with 90% win chance - shouldnt be outside the limit to win 90 lol). So it takes the credits for some reason and they come back after refreshing the site.

2) On random bets the game just takes the coin and crashes, it comes back after a refresh.

3) If a crash has happened, you play another game for 15 min to go back and find the original game is still crashed and keeps telling you that an error occured.

4) If you make an accidental bet higher than the amount you have it doesnt give an error but just crashes, forcing you to refresh the site to continue playing. Sometimes the error stays and you need to close the browser.

5) On Solitaire sometimes the cards that should be revealed from start move up 1 position and "hide" themselves. This again causes another very unpleasent situation where you need to refresh to play on.

6) When making a bet i had it slow down so much, that the bet was credited after i had already made 3 more bets.

7) When switching games, it sometimes took up to 2-3 min to load the game into a playable state. Everything was in place but it was greyed out.

I understand that using bought scripts is really tempting and saves a lot of work, but the ones you got are rather bad and notorious for the glitches.
If you are serious at all about this casino venture i suggest you take a moment and fix the issues at hand.

And ill say again, these only toke a few minutes to find.




Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: fusioncoins on January 02, 2015, 05:26:42 PM
Nice design.
Don't you have investor program or affiliate program? None of these?

Edit:
I found Affiliate Program
http://coinxerox.com/affiliate/overview


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 05:32:07 PM
Nice design.
Don't you have investor program or affiliate program? None of these?

Currently no investor program (in classical Dice manner), but we have affiliate program. See: http://coinxerox.com/affiliate (http://coinxerox.com/affiliate). Link is also available in page footer.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 02, 2015, 05:38:09 PM
From spending 15 minutes on the site:

The good

1) Really good faucet, something different from the captchas. And the amount is fine also, ignore the self-entitled beggers who believe they should be given free money every step of the way. They do not understand that the faucet is there just to show how the games work.
2) Multiple games

Cons

1) Switching from BTC to playmoney bugs out from time to time. When it thinks you make a bet that is too big (for example 900 PLM, with 90% win chance - shouldnt be outside the limit to win 90 lol). So it takes the credits for some reason and they come back after refreshing the site.

2) On random bets the game just takes the coin and crashes, it comes back after a refresh.

3) If a crash has happened, you play another game for 15 min to go back and find the original game is still crashed and keeps telling you that an error occured.

4) If you make an accidental bet higher than the amount you have it doesnt give an error but just crashes, forcing you to refresh the site to continue playing. Sometimes the error stays and you need to close the browser.

5) On Solitaire sometimes the cards that should be revealed from start move up 1 position and "hide" themselves. This again causes another very unpleasent situation where you need to refresh to play on.

6) When making a bet i had it slow down so much, that the bet was credited after i had already made 3 more bets.

7) When switching games, it sometimes took up to 2-3 min to load the game into a playable state. Everything was in place but it was greyed out.

I understand that using bought scripts is really tempting and saves a lot of work, but the ones you got are rather bad and notorious for the glitches.
If you are serious at all about this casino venture i suggest you take a moment and fix the issues at hand.

And ill say again, these only toke a few minutes to find.

Thanks for pros, much more thanks for cons   ;)

We don't use any bought scripts. Despite the fact that games are so much tested, some bugs will appear after deploy to production. It's a law of software development.

The list you reported is very helpful for us and we will definitely fix all bugs you reported. Thanks once more.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: FastSlots on January 02, 2015, 05:47:35 PM
From spending 15 minutes on the site:

The good

1) Really good faucet, something different from the captchas. And the amount is fine also, ignore the self-entitled beggers who believe they should be given free money every step of the way. They do not understand that the faucet is there just to show how the games work.
2) Multiple games

Cons

1) Switching from BTC to playmoney bugs out from time to time. When it thinks you make a bet that is too big (for example 900 PLM, with 90% win chance - shouldnt be outside the limit to win 90 lol). So it takes the credits for some reason and they come back after refreshing the site.

2) On random bets the game just takes the coin and crashes, it comes back after a refresh.

3) If a crash has happened, you play another game for 15 min to go back and find the original game is still crashed and keeps telling you that an error occured.

4) If you make an accidental bet higher than the amount you have it doesnt give an error but just crashes, forcing you to refresh the site to continue playing. Sometimes the error stays and you need to close the browser.

5) On Solitaire sometimes the cards that should be revealed from start move up 1 position and "hide" themselves. This again causes another very unpleasent situation where you need to refresh to play on.

6) When making a bet i had it slow down so much, that the bet was credited after i had already made 3 more bets.

7) When switching games, it sometimes took up to 2-3 min to load the game into a playable state. Everything was in place but it was greyed out.

I understand that using bought scripts is really tempting and saves a lot of work, but the ones you got are rather bad and notorious for the glitches.
If you are serious at all about this casino venture i suggest you take a moment and fix the issues at hand.

And ill say again, these only toke a few minutes to find.

Thanks for pros, much more thanks for cons   ;)

We don't use any bought scripts. Despite the fact that games are so much tested, some bugs will appear after deploy to production. It's a law of software development.

The list you reported is very helpful for us and we will definitely fix all bugs you reported. Thanks once more.

I can highly recommend Mr Edmund Duke as a QA expert. He helped me loads with my site FastSlots.co. It's well worth it sending him an extra bonus from time to time...

Love the design of the dice on coinxerox by the way :-)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: hasiramasenju on January 02, 2015, 06:23:18 PM
i think you site looks is very similar like rollin.io...


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: kpitti on January 02, 2015, 09:45:31 PM
I spent some time here and I like it. I like the faucet idea  ;D at least I won somethink.

I will return for sure.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 03, 2015, 12:16:02 AM
I spent some time here and I like it. I like the faucet idea  ;D at least I won somethink.

I will return for sure.

Great man. It's better to start your brain to win something than act as a rigorous OCR machine.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Foead on January 03, 2015, 01:39:36 AM
I spent some time here and I like it. I like the faucet idea  ;D at least I won somethink.

I will return for sure.
agree with you
the game to get faucet is uniqe :D


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: orryde on January 03, 2015, 02:06:33 AM
I like the interface.  8)
whether this website using mbtc bet ?
how about deposit and withdrawals there are instant?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 03, 2015, 02:14:47 AM
I like the interface.  8)
whether this website using mbtc bet ?
how about deposit and withdrawals there are instant?

mBTC is base view unit only, you can bet decimals. Minimal bets are shown at the top right corner of screen for each game (it's from 1 to 10 satoshi). You can also get free Bitcoins by winning Tic Tac Toe - see "Get Free Bitcoins" button at header.

For deposit one confirmation is needed, for withdraw all of your account deposits must be fully confirmed.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: rz20 on January 03, 2015, 02:45:25 AM
Haha I had to win in tic tac toe ti earn the faucet. Good Site. I will be depositing tomorrow.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: ticoti on January 03, 2015, 02:46:33 AM
is there any investment chance?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Watoshi-Dimobuto on January 03, 2015, 03:32:56 AM
Why does it say Your deposit will automatically sync with your balance when it requires 1 confirmation?

I really love the games. :D
Way to go, coinxerox...


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Clint on January 03, 2015, 03:51:27 AM
i really love the games in this site.. will deposit as soon as i got my coins  ;)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 03, 2015, 09:27:47 AM
Why does it say Your deposit will automatically sync with your balance when it requires 1 confirmation?

I really love the games. :D
Way to go, coinxerox...

The "automatic sync" just means that it is not necessary to refresh web page again and again while you are waiting for your deposit processing. But account balance shown at the top right corner will be automatically updated when your deposit is processed (without manual page refreshing).

So the message has no relation to payment confirmation. However it's a good idea to show confirmation requirement in this dialog window. Thanks for your hint.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Sammal on January 03, 2015, 09:38:26 AM
TIC TAC TOE TUXC TUC TOE TUC TOE IS SO IMPOSSIBLE I Don't even know how to play this, otherwise i just wanted to deposit 13.9 MBTC


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: edmundduke on January 03, 2015, 09:48:31 AM
TIC TAC TOE TUXC TUC TOE TUC TOE IS SO IMPOSSIBLE I Don't even know how to play this, otherwise i just wanted to deposit 13.9 MBTC

The tic tac toe is a rather simple game, and how does not being able to complete it stop you from depositing ?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 03, 2015, 02:32:56 PM
Reverse Labouchère betting strategy bot was added among pre-defined Dice (http://coinxerox.com/dice) bots.

For more information see updated main post of this thread or read great article The Reverse Labouchere System For Roulette (http://www.roulette-games.co.uk/strategy/Reverselabouchere-system.php).

Thank you stellar69 for notice.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Hang10 on January 04, 2015, 09:42:39 AM
I've been waiting for a site like this

Looks like is with good potential


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 04, 2015, 04:48:23 PM
I've been waiting for a site like this

Looks like is with good potential

Nice to hear that. We still have pretty long list of new features and games. Stay connected  ;)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: marioantonini on January 04, 2015, 05:14:46 PM
tic tac faucet are very hard, i have play 3 time and losed, for only 500 satoshi better a normal captcha


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 04, 2015, 05:28:16 PM
tic tac faucet are very hard, i have play 3 time and losed, for only 500 satoshi better a normal captcha

As I already wrote this hint here. Keep in mind that the Tic Tac Toe machine tries to slow down you by blocking, it doesn't try to win. After a few games you understand its tactic, then it pretty simple to win almost all games.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: the_reprobate on January 07, 2015, 07:39:12 PM
So you have to play 100mbtc a hand to win a 63mbtc jackpot?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 08, 2015, 01:02:13 PM
So you have to play 100mbtc a hand to win a 63mbtc jackpot?

No, Jackpot is additional winnings. You win Jackpot only when you place all cards into foundation stacks.

Each card in foundation stack pays 4 to 50 (that means 8% of your stake). That mean, when you place all 52 cards into foundation stacks, you win 416% of your stake + Jackpot. When you place only one card into foundation stack you win 8% of your stake and no Jackpot, etc.

Please see help section (left top link) at Solitaire (http://coinxerox.com/solitaire).


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baristor on January 08, 2015, 02:15:46 PM
this is similar to freebitco generally u will make satoshi profits and when u get greedy and loose all...  8)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: sethminer14 on January 08, 2015, 03:48:16 PM
I like that the bot has martingale trading on there.
To bad martingale has the same odds as betting everything.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: FanEagle on January 08, 2015, 07:16:26 PM
At the moment site is quite down.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 08, 2015, 07:57:04 PM
At the moment site is quite down.

Sorry guys, our server hosting provider has problem with their network. We already posted urgent solving of this issue. It should be up soon.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: ticoti on January 09, 2015, 03:33:36 AM
site is down  :-\

do you have investment plan?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: fusioncoins on January 09, 2015, 03:35:40 AM
Several hours down. Already gone  ???


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: ACMP on January 09, 2015, 03:48:22 AM
its been almost 12hours that site is down.. any ETA when this will be up?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: silvestar on January 09, 2015, 04:34:33 AM
Several hours down. Already gone  ???

OP said that it was a hosting problem. IMHO, it is unlikely he coded the site and scammed in this early stage.

At the moment site is quite down.

Sorry guys, our server hosting provider has problem with their network. We already posted urgent solving of this issue. It should be up soon.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Marcy on January 09, 2015, 05:29:30 AM
Several hours down. Already gone  ???

OP said that it was a hosting problem. IMHO, it is unlikely he coded the site and scammed in this early stage.

At the moment site is quite down.

Sorry guys, our server hosting provider has problem with their network. We already posted urgent solving of this issue. It should be up soon.
hmm hosting problem :(
okay thanks for info


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 09, 2015, 12:35:38 PM
Hi guys,

CoinXerox is ready to play now.  Sorry for the network problem.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: SpreadBit on January 09, 2015, 12:44:34 PM
I really like your concept and the UI.
But i think there are already many dice sites providing the same or better feature.

Why should we join this?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 09, 2015, 01:20:57 PM
I really like your concept and the UI.
But i think there are already many dice sites providing the same or better feature.

Why should we join this?

We wish to offer the best gambling experience to our players. The CoinXerox site reflects our opinion, what we like and what we think our players like too.

We cannot declare what you or other players should like. However we listen to every critic, we wonder your opinion and any suggestion may appear in next CoinXerox version. Please post specific features to improve and I promise you, we will deal with them very seriously.

Unfortunately I cannot answer you more specifically for your common question.



Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 09, 2015, 01:59:39 PM
Several hours down. Already gone  ???

OP said that it was a hosting problem. IMHO, it is unlikely he coded the site and scammed in this early stage.

At the moment site is quite down.

Sorry guys, our server hosting provider has problem with their network. We already posted urgent solving of this issue. It should be up soon.

Thanks silvestar.

I would like to write a few words on this topic.

Please, look at games at CoinXerox. You will found out that there are games not offered anywhere else. Moreover these games are pretty hard to implement - we choosed the hard way to join the Bitcoin market. We spend hundreds of hours of analyzing, implementing and refactoring. We invested a lot of resources to achieve that and the only way how to pay our bills is to operate in a long term.

Please also note that it's common practice in Bitcoin gambling world to withdraw all, when player finish his playing. We are not a bank, we don't hold big balances. Almost all coins in CoinXerox wallet are ours.

In contrast, scam sites are the simpler ones. Their owners did not invest too much, thus it's sufficient for them to steal a few deposits, delete site and run away.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: edmundduke on January 09, 2015, 02:40:56 PM
Several hours down. Already gone  ???

OP said that it was a hosting problem. IMHO, it is unlikely he coded the site and scammed in this early stage.

At the moment site is quite down.

Sorry guys, our server hosting provider has problem with their network. We already posted urgent solving of this issue. It should be up soon.

Thanks silvestar.

I would like to write a few words on this topic.

Please, look at games at CoinXerox. You will found out that there are games not offered anywhere else. Moreover these games are pretty hard to implement - we choosed the hard way to join the Bitcoin market. We spend hundreds of hours of analyzing, implementing and refactoring. We invested a lot of resources to achieve that and the only way how to pay our bills is to operate in a long term.

Please also note that it's common practice in Bitcoin gambling world to withdraw all, when player finish his playing. We are not a bank, we don't hold big balances. Almost all coins in CoinXerox wallet are ours.

In contrast, scam sites are the simpler ones. Their owners did not invest too much, thus it's sufficient for them to steal a few deposits, delete site and run away.


P.S Your games still have serious issues. I had a bug about 4-5 days ago on BJ and on poker. The game was ongoing but i could not take any action (hit etc) I left the site and came back before it went down, games are still bugged. Rather inconvenient i would say.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: jasabbm on January 10, 2015, 11:54:59 AM
This site is offline?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: FanEagle on January 10, 2015, 01:15:23 PM
Again down? What is it, a DDOS?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: mistercoin on January 10, 2015, 01:29:55 PM
Xerox™ Reserves the right to sue your ass off for infringement

;D


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 10, 2015, 06:47:24 PM
Again down? What is it, a DDOS?

You are right. Sorry for this problem. Site is running now.

We were under DDoS attack, overloading server network connection. We are working on protection, to prevent this in the future.

The attack flood network connection only - there was no penetration. Don't worry about your Bitcoins. CoinXerox is secured on multiple levels. Web server does not hold any Bitcoins, all passwords are hashed with salts, back office system for processing transactions is separated and not available from public internet including web server itself etc.

To potential attackers: Today, we were requested to pay 1 BTC to stop DDoS. We did not pay and we never pay even one satoshi to any blackmailer. We rather invest our money and time systematically by fixing and protection.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 10, 2015, 07:56:02 PM
Several hours down. Already gone  ???

OP said that it was a hosting problem. IMHO, it is unlikely he coded the site and scammed in this early stage.

At the moment site is quite down.

Sorry guys, our server hosting provider has problem with their network. We already posted urgent solving of this issue. It should be up soon.

Thanks silvestar.

I would like to write a few words on this topic.

Please, look at games at CoinXerox. You will found out that there are games not offered anywhere else. Moreover these games are pretty hard to implement - we choosed the hard way to join the Bitcoin market. We spend hundreds of hours of analyzing, implementing and refactoring. We invested a lot of resources to achieve that and the only way how to pay our bills is to operate in a long term.

Please also note that it's common practice in Bitcoin gambling world to withdraw all, when player finish his playing. We are not a bank, we don't hold big balances. Almost all coins in CoinXerox wallet are ours.

In contrast, scam sites are the simpler ones. Their owners did not invest too much, thus it's sufficient for them to steal a few deposits, delete site and run away.


P.S Your games still have serious issues. I had a bug about 4-5 days ago on BJ and on poker. The game was ongoing but i could not take any action (hit etc) I left the site and came back before it went down, games are still bugged. Rather inconvenient i would say.

Thanks for reporting. We will deal with that.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 10, 2015, 08:09:03 PM
Xerox™ Reserves the right to sue your ass off for infringement

;D

It's hard to say. Using Xerox brand is infringement, but CoinXerox is not the same as Xerox. Moreover nowadays the term xerox is considered to be common English word: dicrionary definition of xerox (http://dictionary.reference.com/browse/xerox?s=t).


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: monetizator4 on January 10, 2015, 11:25:39 PM
Interesting. Especially scripting with different betting strategies.
I'm going to test your dice.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 12, 2015, 10:18:57 AM
Again down? What is it, a DDOS?

You are right. Sorry for this problem. Site is running now.

We were under DDoS attack, overloading server network connection. We are working on protection, to prevent this in the future.

The attack flood network connection only - there was no penetration. Don't worry about your Bitcoins. CoinXerox is secured on multiple levels. Web server does not hold any Bitcoins, all passwords are hashed with salts, back office system for processing transactions is separated and not available from public internet including web server itself etc.

To potential attackers: Today, we were requested to pay 1 BTC to stop DDoS. We did not pay and we never pay even one satoshi to any blackmailer. We rather invest our money and time systematically by fixing and protection.

CoinXerox is back. We just lunch a new version with DDoS protection.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 13, 2015, 12:23:04 PM
I like that the bot has martingale trading on there.
To bad martingale has the same odds as betting everything.

In addition to the Martingale there are three other predefined betting systems: Labouchère, Reverse Labouchère and Fibonacci.

See in the main post:
  • Labouchère - specify how much do you want to win. Betting strategy splits your plan of winnings in pre-defined number of bets. When loss occured, Martingale system starts to dispose of that loss.
  • Reverse Labouchère - as name suggest at first you specify how much do you may loss. This maximum will not be never exceeded. You'll never be placing huge bets, as the system effectively resets itself when bets start to get high. The losses are fixed.
  • Fibonacci - using Fibonacci sequence (1, 1, 2, 3, 5, 8, 13, ...). Less aggressive than popular Martingale, thus it's more stable and does not require as large bankroll as Martingale.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 24, 2015, 02:13:55 AM
Interesting. Especially scripting with different betting strategies.
I'm going to test your dice.

Thanks. There are some external tools for running bots at dice sites, but I believe that no one is so flexible, straightforward and easy to use as CoinXerox bot support.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: giustone on January 24, 2015, 10:39:15 AM
My withdraw is in  pending for 1 hours.Why?I wait for payment!


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 24, 2015, 03:50:13 PM
My withdraw is in  pending for 1 hours.Why?I wait for payment!

Withdraws are processed.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Shogen on January 24, 2015, 04:06:46 PM
Your site is quite laggy now, which wasn't like a few days ago when I first tried it. Are you under attack again?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 24, 2015, 04:24:47 PM
Your site is quite laggy now, which wasn't like a few days ago when I first tried it. Are you under attack again?

I tried it now and site response is ok for me. No DoS attack. Maybe your connection?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: tyrexs on January 24, 2015, 04:44:43 PM
is so hard open ur site


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Shogen on January 24, 2015, 04:54:16 PM
Your site is quite laggy now, which wasn't like a few days ago when I first tried it. Are you under attack again?

I tried it now and site response is ok for me. No DoS attack. Maybe your connection?


Probably not. I can't access your site now, and http://www.downforeveryoneorjustme.com/coinxerox.com shows the same results.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 24, 2015, 05:08:11 PM
Your site is quite laggy now, which wasn't like a few days ago when I first tried it. Are you under attack again?

I tried it now and site response is ok for me. No DoS attack. Maybe your connection?


Probably not. I can't access your site now, and http://www.downforeveryoneorjustme.com/coinxerox.com shows the same results.

Yeah, I already see it now. Responses are much much longer now. Seems like network flooding DDoS.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on January 25, 2015, 09:27:37 AM
Your site is quite laggy now, which wasn't like a few days ago when I first tried it. Are you under attack again?

I tried it now and site response is ok for me. No DoS attack. Maybe your connection?


Probably not. I can't access your site now, and http://www.downforeveryoneorjustme.com/coinxerox.com shows the same results.

Yeah, I already see it now. Responses are much much longer now. Seems like network flooding DDoS.


DDoS protection turned on. It seems response time is ok.

Retry:  http://www.downforeveryoneorjustme.com/coinxerox.com



Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on February 21, 2015, 10:49:02 AM
Withdrawals aren't instant here?

All withdraws are processed now.

We still check transactions by hand to prevent some issue.

P.S. Congratulations  ;)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on February 21, 2015, 10:38:00 PM
New CoinXerox Dice daily record. Almost 100,000 Bitcoin bets for last 24 hours.

Thanks you all, guys.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: joksim299 on February 22, 2015, 02:38:20 AM
New CoinXerox Dice daily record. Almost 100,000 Bitcoin bets for last 24 hours.

Thanks you all, guys.


I can not opne site it is loading for hour now


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on February 22, 2015, 02:46:38 AM
New CoinXerox Dice daily record. Almost 100,000 Bitcoin bets for last 24 hours.

Thanks you all, guys.


I can not opne site it is loading for hour now

Site is up and running, I tested it now. If the "WARM UP" initialization is longer than a couple of seconds, just refresh page. Web browser may stuck during connecting to game WebSocket.

Anyway do not wait an hour :) Initialization time depends on your internet connection of course, but it normally should take between 5 and 15 secs.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Ingatqhvq on February 22, 2015, 02:55:37 AM
New CoinXerox Dice daily record. Almost 100,000 Bitcoin bets for last 24 hours.

Thanks you all, guys.


I can not opne site it is loading for hour now
Site is up and running, I tested it now. If the "WARM UP" initialization is longer than a couple of seconds, just refresh page. Web browser may stuck during connecting to game WebSocket.

Anyway do not wait an hour :) Initialization time depends on your internet connection of course, but it normally should take between 5 and 15 secs.
The loading time is so long .
I cost several minutes to open it.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on February 22, 2015, 03:14:33 AM
New CoinXerox Dice daily record. Almost 100,000 Bitcoin bets for last 24 hours.

Thanks you all, guys.


I can not opne site it is loading for hour now
Site is up and running, I tested it now. If the "WARM UP" initialization is longer than a couple of seconds, just refresh page. Web browser may stuck during connecting to game WebSocket.

Anyway do not wait an hour :) Initialization time depends on your internet connection of course, but it normally should take between 5 and 15 secs.
The loading time is so long .
I cost several minutes to open it.

If you still have connection problem, you may try HTTPS version. During some studies, HTTPS connection should be more stable for WebSockets. Just use this address: https://coinxerox.com/dice (https://coinxerox.com/dice) You will see warning of not signed encryption certificate, but ignore the warning, that's ok.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Neonecrox13 on February 23, 2015, 04:53:58 PM
I've never played dice here before. I think I"ll try it out :)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Havelivi on February 23, 2015, 05:24:12 PM
coinxerox is nice dice site, but really hard to get free coins from tic toe game,
so admin make it to get from faucet. ::)


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: ndnh on February 23, 2015, 06:08:12 PM
coinxerox is nice dice site, but really hard to get free coins from tic toe game,
so admin make it to get from faucet. ::)

It is easy to win actually. It doesn't play to win. It simply defends. Find a winning method and simply repeat.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Havelivi on February 23, 2015, 06:11:59 PM
coinxerox is nice dice site, but really hard to get free coins from tic toe game,
so admin make it to get from faucet. ::)

It is easy to win actually. It doesn't play to win. It simply defends. Find a winning method and simply repeat.
can you share with me that easy winning method, i tried more than 10 times there but never get succeed to get free coins to play from tic toe, >:(


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on February 23, 2015, 07:10:17 PM
coinxerox is nice dice site, but really hard to get free coins from tic toe game,
so admin make it to get from faucet. ::)

It is easy to win actually. It doesn't play to win. It simply defends. Find a winning method and simply repeat.
can you share with me that easy winning method, i tried more than 10 times there but never get succeed to get free coins to play from tic toe, >:(

You have to be as offensive as possible. In general, the objective of Tic Tac Toe bot is to block you. The bot does not try to win but slow you down.
In short, try to make winning line and do not worry that bot will have the winning line before you.

Good Luck


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: cazkooo on February 23, 2015, 07:26:38 PM
coinxerox is nice dice site, but really hard to get free coins from tic toe game,
so admin make it to get from faucet. ::)

It is easy to win actually. It doesn't play to win. It simply defends. Find a winning method and simply repeat.
can you share with me that easy winning method, i tried more than 10 times there but never get succeed to get free coins to play from tic toe, >:(

none will be giving his winning method anyway, goodluck on finding one by yourself , although there is never a winning method for the long run


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on February 23, 2015, 09:10:26 PM
coinxerox is nice dice site, but really hard to get free coins from tic toe game,
so admin make it to get from faucet. ::)

It is easy to win actually. It doesn't play to win. It simply defends. Find a winning method and simply repeat.
can you share with me that easy winning method, i tried more than 10 times there but never get succeed to get free coins to play from tic toe, >:(

none will be giving his winning method anyway, goodluck on finding one by yourself , although there is never a winning method for the long run

Are you looking for a long-term method?   ;)

http://www.image-share.com/upload/2865/201.jpg



Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Bastketsrus on March 10, 2015, 08:45:33 PM
Why don't you have NBA games?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: Joca97 on March 10, 2015, 09:38:54 PM
this casino is really good
tryed out some games and its really fun...also you can even profit from this

1question:
to win jackpot from solitare do i need to finish the game?


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on March 11, 2015, 06:24:35 AM
Why don't you have NBA games?

Oops, an issue. Thank you for your notice, Bastketsrus.

We already have a fix and within an hour, all should be ok.


Title: Re: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair
Post by: baumi on March 11, 2015, 06:33:07 AM
this casino is really good
tryed out some games and its really fun...also you can even profit from this

1question:
to win jackpot from solitare do i need to finish the game?

Thank you, Joca97. We are continually preparing next games as well, stay tuned.

Short answer for your Solitaire question is: yes.
Long answer is: In Solitaire, there are two parts of winnings:
  • Each card in foundation stack pays 4 to 50 (that means 8% of your bet). Thus for only one card in foundation stack you win 8% of your bet; for all 52 cards in foundation stacks you win 416% of your bet, and so on.
  • You are as well participating in progressive jackpot. To win the jackpot, you must move all 52 cards into the foundation stacks. The amount you can win from jackpot is determined by your initial bet size. To win 100% of the jackpot, you must bet max-bet. To win 50% of the jackpot, 50% of the max-bet is sufficient etc.

Good Luck  ;)