Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 1e-8
- nextbet = basebet
- chance = 4
- ctlose = 0
- multixp = 0.05
- resetchart()
- resetstats()
- function dobet()
- if win then
- ctlose = 0
- nextbet = basebet
- chance = 4
- else
- ctlose += 1
- chance = chance - (chance * (0.5/100))
- multi = 1 +(chance*multixp)
- nextbet = previousbet * multi
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement