Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- fraction = 160000
- basebet = balance/fraction
- nextbet = basebet
- bethigh = false
- loss = 0
- winn = 0
- xix = 0
- target = balance*1000
- chance = 79.9
- function dobet()
- if win then
- winn+=1
- xix+=1
- else
- loss+=1
- end
- if (winn==3) then
- nextbet = previousbet*4
- winn = 0
- end
- if (xix==5) then
- nextbet = previousbet*4
- xix = 0
- winn = 0
- end
- if (loss>3) then
- nextbet = previousbet*6
- end
- if (nextbet == nil) then
- nextbet = previousbet
- end
- if (balance > more) and win then
- loss = 0
- nextbet = balance/fraction
- more = balance
- end
- if (balance > target) then
- stop()
- end
- end
Add Comment
Please, Sign In to add comment