Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Akash Wager Strategy v1.3
- -- Added ability for moderate profitability
- --Idea by Akash Joseph
- --Coded by Dmdstar
- simulation = true -- Set to true if simulating, and adjust the currency and balance below. -- False if running for real.
- notifications = true -- If you want to see status in the console, set to true, otherwise false.
- if (simulation) then
- currency = "USDT"
- balance = 20
- end
- minbet = 0.00000001 -- Set minimum allowed bet for currency at site you are using.
- if (notifications) then
- stoplosscount = 0
- maxbetcount = 0
- end
- initchance = 98 -- Initial & reset chance
- losechance = 76 --74 -- chance on loss
- losemult = 2.4 --2.5 -- Multiplier on loss
- divider = 10000
- profitinc = 8 -- Multiplier to reset partialprofit
- chance = initchance
- basebet = balance/divider
- if basebet<minbet then basebet = minbet end
- nextbet = basebet
- hibal = balance
- lobal = balance
- resetpartialprofit()
- function dobet()
- if partialprofit>(basebet*profitinc) then
- resetpartialprofit()
- end
- if (!win) then
- chance = losechance
- nextbet = previousbet * losemult
- end
- if partialprofit>0 then
- chance = initchance
- nextbet = basebet
- bethigh = math.floor(lastBet.roll*100)%2==0 -- Randomize hi/lo only when in profit
- end
- if (win) then
- if currentstreak>=50 then chance = 96.5 end
- if currentstreak>=65 then chance = 95 end
- if currentstreak>=100 then chance = 93 end
- if currentstreak>=125 then chance = 89 end
- end
- if balance < lobal then lobal = balance end
- if balance > hibal then hibal = balance end
- -- Notifications
- if (notifications) or (nextbet>=balance) then
- if bets%50 == 0 then
- print("-------------")
- print("Balance: "..string.format("%.8f", balance))
- print(" Highest Bal: "..string.format("%.8f", hibal))
- print(" Lowest Bal: "..string.format("%.8f", lobal))
- print("Partial Profit: "..string.format("%.8f", partialprofit))
- print("Wager: "..string.format("%.8f", wagered))
- print("Current bet: "..string.format("%.8f", nextbet))
- print("Chance: "..chance)
- print(" ")
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement