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
Betting StrategiesCurrently 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 ScriptingCoinXerox 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:
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!
Please use this thread for any questions or feedback or email us at
[email protected]