Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 95
- basebet = balance/20000
- nextbet = balance/20000
- losscount = 0
- wincount = 0
- bethigh = true
- function dobet()
- if win then
- bethigh = true
- nextbet = basebet
- chance = 95
- wincount += 1
- losscount = 0
- else
- losscount += 1
- nextbet = previousbet*25
- end
- if (losscount > 0) or (wincount > 25) then
- chance = 5
- nextbet = previousbet*1.1
- bethigh = false
- wincount = 0
- end
- if (losscount > 8) then
- chance = 95
- nextbet = previousbet*200
- losscount = 0
- wincount = 0
- bethigh = true
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement