Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 0.0000001287
- nextbet = basebet
- chance = 24
- ctlose = 0
- target = balance*0.24
- resetstats()
- function dobet()
- if profit >= target then stop() end
- if partialprofit>0 then
- resetpartialprofit()
- end
- if win then
- nextbet = basebet
- chance = 19
- ctlose = 0
- else
- ctlose += 1
- nextbet = nextbet+(nextbet*(55/100))
- if ctlose%8==0 then
- nextbet = nextbet-(nextbet*(14/100))
- chance = chance-(chance*(11/100))
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement