chance = 33
bethigh = false
basebet = balance/100000
nextbet = basebet
roundprofit = 0.000000001
round = 0
function dobet()
round = round + currentprofit
multi = 98/chance
if (win) then
if (round < roundprofit) then
nextbet = -1* round / (multi - 1)
if ( nextbet < 0.00000001 ) then
nextbet = basebet
end
else
nextbet = basebet
end
else
nextbet = basebet
end
if (round > roundprofit) then
round = 0
nextbet = basebet
resetseed()
end
end
0 Comments