Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50000
- basebet = balance/fraction
- nextbet = basebet
- sill = 0
- winz = 0
- chance = 33.3
- oldbal = balance
- target = 20000
- sux = 0
- resetstats()
- function dobet()
- if (win) then
- winz+=1
- sux = 0
- else
- sill+=1
- sux+=1
- end
- if (winz==2) and (sill<=3) then
- nextbet=previousbet*2
- sill=0
- winz=0
- end
- if (sill>3) and (winz<=1) then
- winz=0
- sill=0
- end
- if !win then
- nextbet = previousbet
- end
- if sux>=4 then
- nextbet = previousbet*2
- sux = 0
- end
- if (balance>=(oldbal+(basebet*4))) then
- nextbet = basebet
- sill = 0
- winz = 0
- oldbal = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement