Pages:
Author

Topic: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair - page 5. (Read 6939 times)

full member
Activity: 168
Merit: 100
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.
sr. member
Activity: 432
Merit: 250
Febriyana Muhammad
How many minimum payout in that site?
I try payout 0.1 mB, but always error
full member
Activity: 210
Merit: 100
nice design of website i like the design of faucet i will play more in the site
hero member
Activity: 602
Merit: 501
Absolutely love the tic tac toe faucet  Grin Grin Grin Grin
full member
Activity: 168
Merit: 100
cool like this game and the way to get free faucet  Cheesy
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  Wink
hero member
Activity: 840
Merit: 524
Yes!
I like the UI and design.

The bots are good too. Smiley
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...
newbie
Activity: 42
Merit: 0
cool like this game and the way to get free faucet  Cheesy
Idk the tictactoe game is kinda weird.
full member
Activity: 238
Merit: 100
cool like this game and the way to get free faucet  Cheesy
sr. member
Activity: 252
Merit: 251
Knowledge its everything
I just notice this site have 8 games  Grin
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
full member
Activity: 168
Merit: 100
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.
sr. member
Activity: 378
Merit: 250
solitaire game doesnt work? or is it only on me?

EDIT: all games doesnt work on me.. Undecided
full member
Activity: 168
Merit: 100
The Tic Tac Toe somehow hard & only got 500 satoshi  Sad
And sometimes my balance become 0

But, i like the UI  Smiley

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 Smiley  What do you think is enough?
sr. member
Activity: 252
Merit: 251
Knowledge its everything
The Tic Tac Toe somehow hard & only got 500 satoshi  Sad
And sometimes my balance become 0

But, i like the UI  Smiley
full member
Activity: 168
Merit: 100
 

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 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!


Please use this thread for any questions or feedback or email us at [email protected]
Pages:
Jump to: