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