Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 2
- base = 0.00015
- nextbet = base
- bethigh = true
- target = balance * 3
- ifmods = 30
- iflose = 3
- resetstats()
- resetchart()
- function dobet()
- if balance > target then stop() end
- if win then
- nextbet = base
- else
- if (currentstreak%ifmods == 0) then
- nextbet = previousbet * iflose
- end
- end
- sleep(0.4)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement