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