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