Bitcoin Forum
June 25, 2024, 08:23:49 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 5 »  All
  Print  
Author Topic: CoinXerox Dice | 1% Edge | Free BTC | Bot scripting | Provably Fair  (Read 6936 times)
baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 10:18:37 AM
Last edit: February 22, 2015, 03:20:43 AM by baumi
 #1

 

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 support@coinxerox.com
sandykho47
Sr. Member
****
Offline Offline

Activity: 252
Merit: 251

Knowledge its everything


View Profile
January 02, 2015, 10:35:01 AM
 #2

The Tic Tac Toe somehow hard & only got 500 satoshi  Sad
And sometimes my balance become 0

But, i like the UI  Smiley

Kemampuanku Tidak semua orang memiliki dan dapat melakukannya . Tidak memakan kaum sendiri . dan mempunyai kode etik yang tidak masuk akal.
baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 10:50:48 AM
Last edit: January 02, 2015, 11:20:42 AM by baumi
 #3

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?
Clint
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
January 02, 2015, 10:54:15 AM
 #4

solitaire game doesnt work? or is it only on me?

EDIT: all games doesnt work on me.. Undecided

baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 10:59:50 AM
Last edit: January 02, 2015, 12:55:23 PM by baumi
 #5

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.
sandykho47
Sr. Member
****
Offline Offline

Activity: 252
Merit: 251

Knowledge its everything


View Profile
January 02, 2015, 11:10:00 AM
 #6

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

Kemampuanku Tidak semua orang memiliki dan dapat melakukannya . Tidak memakan kaum sendiri . dan mempunyai kode etik yang tidak masuk akal.
choZin
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
January 02, 2015, 11:15:30 AM
 #7

cool like this game and the way to get free faucet  Cheesy

Holderbert
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 02, 2015, 11:24:57 AM
 #8

cool like this game and the way to get free faucet  Cheesy
Idk the tictactoe game is kinda weird.
Watoshi-Dimobuto
Hero Member
*****
Offline Offline

Activity: 840
Merit: 524


Yes!


View Profile
January 02, 2015, 11:32:11 AM
 #9

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...
baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 11:33:53 AM
 #10

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
james.lent
Hero Member
*****
Offline Offline

Activity: 602
Merit: 501



View Profile
January 02, 2015, 11:52:31 AM
 #11

Absolutely love the tic tac toe faucet  Grin Grin Grin Grin
suman66
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
January 02, 2015, 11:57:03 AM
 #12

nice design of website i like the design of faucet i will play more in the site
febriyana
Sr. Member
****
Offline Offline

Activity: 432
Merit: 250


Febriyana Muhammad


View Profile
January 02, 2015, 03:18:58 PM
 #13

How many minimum payout in that site?
I try payout 0.1 mB, but always error
baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 03:27:21 PM
 #14

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.
joksim299
Legendary
*
Offline Offline

Activity: 2184
Merit: 1014


Bitdice is scam scam scammmmmmmmmmmmmmmmmmmmmmmmmm


View Profile WWW
January 02, 2015, 03:40:22 PM
 #15

Really nice design! Will try and post here.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
suman66
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
January 02, 2015, 03:41:13 PM
 #16

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
kusumadewi
Hero Member
*****
Offline Offline

Activity: 826
Merit: 517



View Profile
January 02, 2015, 03:59:00 PM
 #17

is there any free btc to try your site sir ?
baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 04:15:12 PM
 #18

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.)
baumi (OP)
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile WWW
January 02, 2015, 04:23:58 PM
 #19

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.
panjul07
Legendary
*
Offline Offline

Activity: 3514
Merit: 1357



View Profile WWW
January 02, 2015, 04:27:21 PM
 #20

Nice Interface.

Bad faucet (both amount and game)

High Minimal Payout.


██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
Pages: [1] 2 3 4 5 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!