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