Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- more = balance
- basebet = balance/4000
- nextbet = basebet
- loss = 0
- winn = 0
- target = balance*25
- chance = 49.95
- function dobet()
- if !win then
- loss+=1
- else
- winn+=1
- end
- if (winn>=3) and (loss<=2) then
- nextbet = previousbet*2
- loss = 0
- winn = 0
- end
- if (loss>=3) and (winn<=2) then
- nextbet = previousbet*2
- loss = 0
- winn = 0
- end
- if (loss>2) and (winn>2) then
- loss = 0
- winn = 0
- nextbet = previousbet
- end
- if (balance > (more*1.0005)) then
- nextbet=basebet
- more = balance
- end
- if (nextbet > balance/20) then
- nextbet = balance/40
- end
- if (balance > target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement