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