Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 49.95
- basebet = 0.01
- nextbet = basebet
- more = balance
- loss = 0
- nice = 0
- target = 50000
- function dobet()
- if !win then
- loss+=1
- nice+=1
- end
- if (nice == 7) then
- bethigh = !bethigh
- nice = 0
- end
- if (balance > more) then
- nextbet = basebet
- more = balance
- else
- if (math.fmod(loss,4)==0) then
- nextbet = previousbet*((math.random(20,22))/10)
- else
- nextbet = previousbet
- end
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement