Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 83
- bethigh = true
- target = 20000
- basebet = balance/10000
- nextbet = basebet
- more = balance
- read = balance
- los = 0
- won = 0
- function dobet()
- if (win) then
- won+=1
- else
- los+=1
- end
- if balance > more and win then
- nextbet = balance/10000
- more = balance
- end
- if (won == 2) then
- nextbet = previousbet*2
- won = 0
- end
- if nextbet > balance then
- nextbet = balance/10000
- more = balance
- end
- if (los == 2) then
- nextbet = previousbet*2
- los = 0
- end
- if balance > target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement