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