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