Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 24.975
- nextbet = balance/130000
- losecount = 0
- betcount = 0
- bethigh = false
- function dobet()
- 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
- betcount = 0
- resetseed();
- nextbet = balance/130000
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement