Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
sree6020
on 30/04/2020, 14:15:03 UTC
Hello can someone please help me with a code that works like this:

First a bet is placed such that basebet=0.00000001 ,bethigh=true, chance=49.5.If this bet wins then nextbet is placed with same conditions as before.But if the bet losses then nextbet is 2X the previous bet( i.e., 0.00000002 in this case) and remaining conditions are similar. And if the second bet wins ,then nextbet resets to 0.00000001 and continues the cycle and if loss then nextbet again becomes  2X of previous bet.This standard martingale only continues until there are 3 consecutive losses.That is, when a bet of 0.00000004 is placed and lost ,then nextbet becomes 0sats (since primedice supports zero amount bets).This zero bet is placed consecutively until 1 win comes.When one win comes then nextbet becomes 2X of the bet that was placed at 3rd consecutive loss( that is 0.00000008 in this case).Again if this bet wins then whole cycle resets and continues from first,And if this bet losses the again martingale is applied upto 2 more stages like this:8sat,16sat,32sat.....here if bet with 32 sat losses then it becomes the new value to be doubled after placing consecutive zero amount bets.

For better understanding I am attaching a simulated bet list here:

1.  0.00000001----------------win
2.  0.00000001----------------win
3.  0.00000001----------------win
4.  0.00000001-----------------loss
5.  0.00000002-----------------win
6.  0.00000001-----------------win
7.  0.00000001-----------------loss-----:
8.  0.00000002----------------loss -----: 3 consecutive losses.so nextbet becomes 0 and continues until 1 win is obtained
9.  0.00000004----------------loss------:
10.0.00000000----------------loss
11.0.00000000----------------win--------1 win is obtained with zero bet so nextbet is 2X of previously lost highest bet (  2*0.00000004)
12.0.00000008----------------win-------here, since this bet is win so cycle again starts from first .but if this was loss,then again martingale continues until
                                                         8,16,32. If bet with 32 sat losses it becomes the new number to be doubled again after zero bet streak.