Seuntjie,
Looking to automate this pattern using DiceBot settings.
My description is repetitive as to be as clear as possible.
Can this be done with settings or prelist? Thanks for great bot!
For 2x payout, 49.5 odds, martingale:
Accumulated multiplier
X2- 1st loss
X4- 2nd loss (2x + 2x)
X8- parley if won
X16- reset on win, no parley if won
X32
X64
X128
X256 min bet- MAX, reset on loss or win
Multiply after loss but not more than 8 times to MAX 256x min bet
MAX bet is x256 min bet
1st win... do nothing, multiple x 1.0, repeat SAME (parley) bet
-- (reset to base after 2nd consecutive win, not 1st)
-- no parley if above x16 min bet
-- only one parley in series
1st loss after repeating SAME (parley) winning bit... multiply x4 previous losing bet
-- (only one x4 after a loss in this series (change once), all other losses are x2 until MAX
2nd consecutive win in a row... RESET to base
1st win after repeating SAME (parley) bet... RESET to base
1st loss after a win... multiply x2
-- Unless the win was a repeat of a SAME (parley) win bet, then x4, only once in series
Loss after a loss... multiply x2 always, until MAX
Loss x2 - unless right after SAME bet from win, then x4 once
1st loss after SAME bet is x4, once only
Always RESET after 2nd win in series
1st W- same bet
2nd W in row- RESET to base
2nd W in series SAME bet after loss (parley) unless x8 min bet then reset after win
EXAMPLE:
Min bet- loss- x2
.001- min
.002- 1st double after loss, repeat .02 bet next if this wins, reset if it wins again
.004- 2nd double after loss, parley SAME if won, unless 2nd win in series then RESET
.008- 3rd double after loss, parley SAME if 1st WIN after loss, otherwise RESET if 2nd win in series
.016- 4th double after loss, RESET if won
.032- 5th double after loss, RESET if won
.064- 6th double after loss, RESET if won
.128- 7th double after loss, RESET if won
.256- 8th, MAX, RESET after loss or win
My challenge mostly setting it to parley only once when winning x4 or x8 or x16 of min bet, and... having 1st loss after 1st win increasing x4 only once. Thanks
This one might do the work in the programmers mode:
chance=49.5
parley=true
basebet=0.001
highestParley=0.008
nextbet=basebet
maxBet=0.256
function dobet()
if win then
if parley and previousbet<=highestParley then
nextbet=previousbet
parley=false
else
nextbet=basebet
parley=true
end
else
if previousbet==maxBet then
nextbet=basebet
parley=true
else
nextbet=previousbet*2
end
end
end
If you have any further questions I think the right place to discuss would be
this thread