Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 4000
- basebet = balance/fraction
- nextbet = basebet
- bethigh = true
- chance = 66
- target = 500000
- james = balance*1.0025
- him = balance*1.001
- dim = balance/1.0005
- resetstats()
- function dobet()
- if win then
- dim = balance/1.0005
- else
- bethigh = !bethigh
- end
- if balance>him then
- nextbet = previousbet
- him = balance*1.001
- dim = balance/1.0005
- end
- if (nextbet==nil) then
- nextbet = previousbet
- end
- if balance<dim then
- nextbet = previousbet*2
- dim = balance/1.0005
- end
- if balance>james then
- nextbet = balance/fraction
- dim = balance/1.0005
- james = balance*1.0025
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement