Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --RAMBO0
- base = 1e-8
- bethigh = false
- po = 79
- target = 05.05
- marti = 1.1256
- nextbet = base
- chance = 99/po
- ls = 0
- function dobet()
- if profit > target then stop() end
- if win then
- nextbet = base
- ls = 0
- po = 25
- else
- ls = ls + 1
- po = po * ((100 - 1.5)/100)
- nextbet = previousbet * marti
- if ls == 45 then
- po = po * 1.5
- end
- if ls == 75 then
- po = po * 1.45
- end
- if ls == 95 then
- po = po * 1.55
- end
- end
- chance = 99/po
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement