Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Kit's Profit Thing v1.0
- --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 --Set to simulated coin & balance
- currency = "USDT"
- balance = 100
- end
- minbet = 0 -- Set minimum allowed by site. ORIGINALLY SET TO ZERO.
- if (notifications) then
- stoplosscount = 0
- maxbetcount = 0
- end
- initchance = 75 -- Initial & reset chance
- chanceinc = 0.80 -- how much to increase chance on loss
- div = 10000 --Set higher for more safety but slower profit
- profitinc = 8 -- Multiplier to reset partialprofit
- initbal = balance
- chance = initchance
- basebet = minbet -- Bet on win (as low as possible)
- gobet = math.max((balance/div),minbet) -- What to bet after 2 losses
- nextbet = basebet
- hibal = balance
- lobal = balance
- function dobet()
- if partialprofit>1.00 then
- gobet = math.max((balance/div),minbet)
- resetpartialprofit()
- end
- if (win) then
- chance = initchance
- nextbet = minbet
- end
- if (!win) then
- if losestreak>2 then
- chance = chance+chanceinc
- end
- if (losestreak == 2) then
- nextbet = gobet
- end
- if (losestreak == 3) then
- nextbet = previousbet*4.00
- end
- if (losestreak == 4) then
- nextbet = previousbet*4.60
- end
- if (losestreak == 5) then
- chance = 80
- nextbet = previousbet*5.70
- end
- if (losestreak == 6) then
- chance = 70
- nextbet = previousbet*4.00
- end
- if (losestreak == 7) then
- nextbet = previousbet*4.50
- end
- if (losestreak >=8) and (losestreak<=9) then
- if (losestreak == 8) then chance = 66 end
- nextbet = previousbet*3.00
- end
- if (losestreak == 10) then
- nextbet = previousbet*3.50
- end
- end
- --Randomize hi/lo
- bethigh = math.floor(lastBet.roll*100)%2==0
- -- Notifications
- if balance < lobal then lobal = balance end
- if balance > hibal then hibal = balance end
- 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