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