here are script, maybe its one of us work.
basebet = 0.00000010
nextbet = basebet
roundprofit = 0
chance = 49.5
function dobet()
roundprofit += currentprofit
if (win) then
if (roundprofit < 0) then
nextbet = previousbet + basebet
print ("WIN")
print(nextbet)
else
nextbet = basebet
print ("WIN")
print(nextbet)
end
if roundprofit > 0 then roundprofit = 0 end
end
if (!win) then
nextbet = previousbet
print ("LOSE")
print(nextbet)
end
end
end
end
I was usiging it like base from what im tryin to do what I need, but im confused, I need some thing what I cant get out to work properly.
please help to add that kind of stuff:
if its "first lose" then first bet will be chance "A" after than one bet if it was failed, chances are chaning to chance "B" till win. (better to be with "if current streak section")
when win, and "round profit" are below 0, then start to play on chance "B" till roundprofit > 0, (not like first "recover round" where start from chance "A" first bet, and only after this first bet was chance "B")
chance "A" need to be changed only the in first lose after winnins/losings and try to recover only one time, till first fail(first losing round recover) and not every second recovery rounds. (maybe will need two chance like, A1, A2, but after i will see what im asking, i will can edit it properly byself - i think)
and ofc after win and roundprofit are more than 0, they are changed to base chance "C"
and same thing with that first "Recovery round i want increase previousbet with multiplier after X currentstreak" but every second recovery round if roundprofit is below 0 i want to increase from first bet.
hope that some1 are understand what Im asking, and want...
thanks.