Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sats = 5e4
- basebet = sats/1e8
- iflose = {1.32,1}
- chancex = {15,19,70}
- target = balance*1.1
- nextbet = basebet
- chance = 50
- betlose = 0
- resetstats()
- function dobet()
- if win then
- betlose = 0
- chance = chancex[3]
- nextbet = basebet
- else
- betlose += 1
- if chance < chancex[2] then
- chance += 1
- end
- if chance >= chancex[2] then
- chance = chancex[1]
- end
- if betlose%iflose[2]==0 then
- nextbet = previousbet*iflose[1]
- end
- end
- if balance > target then stop() end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement