Advertisement
Ypleitez

Untitled

Oct 20th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. --Akash Wager Strategy v1.3
  2. -- Added ability for moderate profitability
  3. --Idea by Akash Joseph
  4. --Coded by Dmdstar
  5.  
  6. simulation = true -- Set to true if simulating, and adjust the currency and balance below. -- False if running for real.
  7. notifications = true -- If you want to see status in the console, set to true, otherwise false.
  8.  
  9. if (simulation) then
  10. currency = "USDT"
  11. balance = 20
  12. end
  13.  
  14. minbet = 0.00000001 -- Set minimum allowed bet for currency at site you are using.
  15.  
  16. if (notifications) then
  17. stoplosscount = 0
  18. maxbetcount = 0
  19. end
  20.  
  21. initchance = 98 -- Initial & reset chance
  22. losechance = 76 --74 -- chance on loss
  23. losemult = 2.4 --2.5 -- Multiplier on loss
  24. divider = 10000
  25.  
  26. profitinc = 8 -- Multiplier to reset partialprofit
  27.  
  28. chance = initchance
  29. basebet = balance/divider
  30. if basebet<minbet then basebet = minbet end
  31. nextbet = basebet
  32. hibal = balance
  33. lobal = balance
  34.  
  35. resetpartialprofit()
  36.  
  37. function dobet()
  38.  
  39. if partialprofit>(basebet*profitinc) then
  40. resetpartialprofit()
  41. end
  42.  
  43. if (!win) then
  44. chance = losechance
  45. nextbet = previousbet * losemult
  46. end
  47.  
  48. if partialprofit>0 then
  49. chance = initchance
  50. nextbet = basebet
  51. bethigh = math.floor(lastBet.roll*100)%2==0 -- Randomize hi/lo only when in profit
  52. end
  53.  
  54. if (win) then
  55. if currentstreak>=50 then chance = 96.5 end
  56. if currentstreak>=65 then chance = 95 end
  57. if currentstreak>=100 then chance = 93 end
  58. if currentstreak>=125 then chance = 89 end
  59. end
  60.  
  61.  
  62. if balance < lobal then lobal = balance end
  63. if balance > hibal then hibal = balance end
  64.  
  65. -- Notifications
  66. if (notifications) or (nextbet>=balance) then
  67. if bets%50 == 0 then
  68. print("-------------")
  69. print("Balance: "..string.format("%.8f", balance))
  70. print(" Highest Bal: "..string.format("%.8f", hibal))
  71. print(" Lowest Bal: "..string.format("%.8f", lobal))
  72. print("Partial Profit: "..string.format("%.8f", partialprofit))
  73. print("Wager: "..string.format("%.8f", wagered))
  74. print("Current bet: "..string.format("%.8f", nextbet))
  75. print("Chance: "..chance)
  76. print(" ")
  77. end
  78. end
  79.  
  80.  
  81. end
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement