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