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