Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49.95
- base = balance/567000
- prebet = balance/567000
- nextbet = prebet
- losecount = 0
- betcount = 0
- bethigh = true
- function dobet()
- if win then
- nextbet = prebet
- chance = 49.95
- losecount = 0
- betcount += 1
- resetstats();
- bethigh=true
- else
- losecount += 1
- betcount = 0
- end
- if (losecount > 0) then
- chance = 79.92
- nextbet = previousbet*16
- bethigh = false
- bethigh = false
- end
- if (losecount > 1) then
- chance = 62.43
- nextbet = previousbet*2
- bethigh = false
- end
- if (losecount > 2) then
- chance = 95
- nextbet = previousbet*35
- bethigh = false
- resetseed();
- end
- if (losecount > 3) then
- chance = 95
- nextbet = previousbet*22.5
- bethigh = true
- resetseed();
- end
- if balance > 1550000 then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement