Anyone can help to program the bot with info below?
Base bet: 0.00001
Multiplier: 5
Chance: 66.6%
Bet: low
Condition
If betting lose more than 2 times, and follow by win (at least 1 win) and if the following lose betting appear then the bot will multiply base bet with multiplier. If it is losing, when the next condition fulfill, the betting amount increased to 2x multiplier. Reset to base bet if win.
~~ Examples snipped ~~
Good examples... I don't think that's toooo difficult... If I understand right... we do ONE big bet... then back to basebet until the next "2+ loss/1+win/loss" cycle... and then 2x multiplier bet...
Also, when you said 2x and 3x multiplier... I took that to mean:
1st bigbet = 0.00001 * 5
2nd bigbet = 0.00001 * 10
3rd bigbet = 0.00001 * 15
etc
As always... Code is NOT thoroughly tested... use at own risk! -- Script for hi5burger
-- written by HCP
basebet = 0.00001
multiplier = 5
multiplierstep = 0
chance = 66.6
bethigh = false
nextbet = basebet
betNextLoss = false
foundLosingStreak = false
bettingBig = false
function dobet()
if (win) then
if foundLosingStreak then
print("End of losing streak... bigBetting next loss!")
-- win after losing streak, bet big after next loss
betNextLoss = true
foundLosingStreak = false
multiplierstep = multiplierstep + 1
end
if bettingBig then
print("Hit the bigBet... RESETTING!")
nextbet = basebet
multiplierstep = 0
betNextLoss = false
foundLosingStreak = false
bettingBig = false
bethigh = !bethigh
end
else
nextbet = basebet
if (currentstreak == -1) and betNextLoss then
print("First loss after win, MULTIPLY!")
-- first loss after winning streak, multiply!
nextbet = previousbet * (multiplier * multiplierstep)
betNextLoss = false
foundLosingStreak = false
bettingBig = true
elseif currentstreak <= -2 then
print("LossStreak > 2 found...")
foundLosingStreak = true
betNextLoss = false
bettingBig = false
end
end
end
If you make millions and are feeling generous, my tip address is: 33gzi64cvCr4i9ECGPwvZktzS2qknRUFhC

ps. Your strategy doesn't seem to perform too well

