Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49.5
- base = balance/5000000
- prebet = balance/5000000
- nextbet = prebet
- losecount = 0
- betcount = 0
- function dobet()
- if win then
- nextbet = prebet
- chance = 19.8
- losecount = 0
- betcount += 1
- else
- losecount += 1
- betcount = 0
- end
- if (losecount > 0) then
- chance 19.8
- end
- if (losecount > 4) then
- chance = 95
- nextbet= previousbet*65
- end
- if (losecount > 5) then
- chance = 95
- nextbet= previousbet*25
- end
- if balance > 100000 then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement