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