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