Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49.95
- basebet = 0.00000001
- nextbet = 0.00000001
- wincount = 0
- losscount = 0
- bethigh = true
- function dobet()
- if win then
- wincount += 1
- losscount = 0
- end
- if !win then
- losscount += 1
- nextbet = previousbet*2
- end
- if (wincount == 2) then
- nextbet = basebet
- wincount = 0
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement