Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = balance * 1e-8
- losecount = 0
- nextbet = basebet
- chancef = 99/25
- chance = chancef
- bethigh = true
- target = balance + 10
- resetstats()
- function dobet()
- if win then
- losecount = 0
- nextbet = basebet
- chance = chancef
- else
- losecount += 1
- chance = chance - (chance * (1.5/100))
- nextbet = previousbet + (previousbet * (25.6/100))
- end
- if (losecount%25==0 and losecount > 0) then
- chance = chance + (chance * (15/100))
- end
- if (losecount == 35) then
- chance = chance + (chance * (50/100))
- end
- if (losecount == 45) then
- chance = chance + (chance * (45/100))
- end
- if (losecount == 55) then
- chance = chance + (chance * (55/100))
- end
- if balance > target then stop() end
- print("\n\n\n\n--")
- print("-=■ Profit \t[ "..string.format("%.8f",profit).."\t("..string.format("%.2f",profit/(balance-profit)*100).."%) ]")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement