Untitled
unknown
plain_text
3 years ago
784 B
13
Indexable
chance=76
bethigh=false
basebet=balance/100000
nextbet=basebet
winss=0
ball = balance
StopOnProfit = ball*0.01
function dobet()
if profit > StopOnProfit then
stop();
end
if(win)then
nextbet=previousbet*1.30
winss=winss+1
if winss%4==0 then
basebet=balance/100000
end
else
nextbet=previousbet*5
losss=losss+1
if currentstreak == -1 then
bethigh =! bethigh
end
if currentstreak == -2 then
bethigh =! bethigh
end
if currentstreak == -3 then
bethigh =! bethigh
end
if currentstreak == -4 then
bethigh =! bethigh
end
if currentstreak == -5 then
bethigh =! bethigh
end
if currentstreak == -6 then
bethigh =! bethigh
stop()
end
end
endEditor is loading...