Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 24.975
- nextbet = 0.00000001
- losecount = 0
- betcount = 0
- bethigh = false
- function dobet()
- if balance > 0.000001 then
- prebet = 0.00000001
- end
- if balance > 0.00001 then
- prebet = 0.00000002
- end
- if balance > 0.00003 then
- prebet = 0.00000003
- end
- if balance > 0.00007 then
- prebet = 0.00000004
- end
- if balance > 0.0001 then
- prebet = 0.00000005
- end
- if balance > 0.00017 then
- prebet = 0.00000006
- end
- if balance > 0.00020 then
- prebet = balance/10000
- end
- if win then
- bethigh = false
- betcount += 1
- losecount = 0
- else
- losecount += 1
- end
- if (losecount > 0) then
- nextbet = previousbet
- end
- if (math.fmod(losecount,2)==0) then
- nextbet = previousbet*2
- end
- if (betcount == 2) then
- nextbet = prebet
- betcount = 0
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement