Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 76.84
- base = balance/8438
- prebet = balance/8438
- nextbet = prebet
- losecount = 0
- betcount = 0
- bethigh = true
- function dobet()
- if win then
- nextbet = prebet
- chance = 76.84
- losecount = 0
- betcount += 1
- resetstats();
- bethigh=true
- else
- losecount += 1
- betcount = 0
- end
- if (losecount > 0) then
- chance = 66.6
- nextbet = previousbet*2.5
- bethigh = false
- end
- if (losecount > 1) then
- chance = 90
- nextbet = previousbet*15
- bethigh = false
- resetseed();
- end
- if (losecount > 2) then
- chance = 90
- nextbet = previousbet*15
- bethigh = true
- resetseed();
- end
- if balance > 1550000 then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement