Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- fraction = 10
- basebet = balance/fraction
- nextbet = basebet
- bethigh = false
- loss = 0
- winn = 0
- wind = 0
- lossyz = 0
- vix = 0
- target = balance*25
- chance = 49.95
- function dobet()
- if win then
- winn+=1
- wind = 0
- vix+=1
- else
- vix +=1
- loss+=1
- wind +=1
- end
- if vix>2 then
- vix = 0
- end
- if (wind==1) then
- lossyz +=1
- wind = 0
- else
- losszy = 0
- end
- if (winn==4) then
- nextbet = previousbet*2
- winn = 0
- end
- if (nextbet==nil) then
- nextbet = previousbet
- end
- if (loss>=1) and (lossyz>0) then
- lossyz = 0
- nextbet = 0.00000001
- end
- if (loss>=1) and win then
- nextbet = balance/fraction
- loss = 0
- end
- if (balance >= target) then
- stop()
- ching()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement