Advertisement
Ypleitez

Untitled

Oct 19th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. --Kit's Profit Thing v1.0
  2. --Coded by Dmdstar
  3.  
  4.  
  5. simulation = true -- Set to true if simulating, and adjust the currency and balance below. -- False if running for real.
  6. notifications = true -- If you want to see status in the console, set to true, otherwise false.
  7.  
  8. if (simulation) then --Set to simulated coin & balance
  9. currency = "USDT"
  10. balance = 100
  11. end
  12.  
  13. minbet = 0 -- Set minimum allowed by site. ORIGINALLY SET TO ZERO.
  14.  
  15. if (notifications) then
  16. stoplosscount = 0
  17. maxbetcount = 0
  18. end
  19.  
  20. initchance = 75 -- Initial & reset chance
  21. chanceinc = 0.80 -- how much to increase chance on loss
  22. div = 10000 --Set higher for more safety but slower profit
  23.  
  24. profitinc = 8 -- Multiplier to reset partialprofit
  25.  
  26. initbal = balance
  27. chance = initchance
  28. basebet = minbet -- Bet on win (as low as possible)
  29. gobet = math.max((balance/div),minbet) -- What to bet after 2 losses
  30.  
  31.  
  32. nextbet = basebet
  33.  
  34. hibal = balance
  35. lobal = balance
  36.  
  37.  
  38. function dobet()
  39.  
  40. if partialprofit>1.00 then
  41. gobet = math.max((balance/div),minbet)
  42. resetpartialprofit()
  43. end
  44.  
  45. if (win) then
  46. chance = initchance
  47. nextbet = minbet
  48. end
  49.  
  50.  
  51. if (!win) then
  52.  
  53. if losestreak>2 then
  54. chance = chance+chanceinc
  55. end
  56.  
  57. if (losestreak == 2) then
  58. nextbet = gobet
  59. end
  60.  
  61. if (losestreak == 3) then
  62. nextbet = previousbet*4.00
  63. end
  64.  
  65. if (losestreak == 4) then
  66. nextbet = previousbet*4.60
  67. end
  68.  
  69. if (losestreak == 5) then
  70. chance = 80
  71. nextbet = previousbet*5.70
  72. end
  73.  
  74. if (losestreak == 6) then
  75. chance = 70
  76. nextbet = previousbet*4.00
  77. end
  78.  
  79. if (losestreak == 7) then
  80. nextbet = previousbet*4.50
  81. end
  82.  
  83. if (losestreak >=8) and (losestreak<=9) then
  84. if (losestreak == 8) then chance = 66 end
  85. nextbet = previousbet*3.00
  86. end
  87.  
  88. if (losestreak == 10) then
  89. nextbet = previousbet*3.50
  90. end
  91.  
  92. end
  93.  
  94. --Randomize hi/lo
  95. bethigh = math.floor(lastBet.roll*100)%2==0
  96.  
  97.  
  98. -- Notifications
  99. if balance < lobal then lobal = balance end
  100. if balance > hibal then hibal = balance end
  101.  
  102. if (notifications) or (nextbet>=balance) then
  103. if bets%50 == 0 then
  104. print("-------------")
  105. print("Balance: "..string.format("%.8f", balance))
  106. print(" Highest Bal: "..string.format("%.8f", hibal))
  107. print(" Lowest Bal: "..string.format("%.8f", lobal))
  108. print("Partial Profit: "..string.format("%.8f", partialprofit))
  109. print("Wager: "..string.format("%.8f", wagered))
  110. print("Current bet: "..string.format("%.8f", nextbet))
  111. print("Chance: "..chance)
  112. print(" ")
  113. end
  114. end
  115.  
  116.  
  117. end
  118.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement