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