Advertisement
Ypleitez

Untitled

Nov 15th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. local strategy = {
  2. scriptname = 'Strategy wager november 2023',
  3. minbet = 1.7e-5,
  4. div = 1e3,
  5. startch = 50,
  6. minch = 1,
  7. maxch = 98,
  8. prebet = 0,
  9. base = balance / div,
  10. initbal = balance,
  11. nextbet = balance / div,
  12. autoroll = false,
  13. bethigh = false,
  14. preroll = false,
  15. chance = 50,
  16. bal = balance,
  17. limitroll = 100,
  18. ngeroll = 0,
  19. roll = 0,
  20. vaulted = 0,
  21. cprofit = 0,
  22. vno = 0
  23. }
  24.  
  25. function resetPartialProfit()
  26. partialprofit = 0
  27. end
  28.  
  29. function dobet()
  30. if vno > 0 then
  31. log("--- Vaulted \t" .. string.format("%.2f", vaulted) .. "\t #" .. vno .. " ")
  32. end
  33.  
  34. cprofit = cprofit + currentprofit
  35.  
  36. if preroll then
  37. ngeroll = ngeroll + 1
  38. nextbet = prebet
  39. chance = math.random(minch, maxch)
  40.  
  41. if ngeroll > limitroll and win then
  42. preroll = false
  43. autoroll = false
  44. chance = maxch
  45. nextbet = strategy.base
  46. ngeroll = 0
  47. end
  48. else
  49. if partialprofit > 0 then
  50. resetPartialProfit()
  51. initbal = balance
  52. nextbet = balance / div
  53. chance = maxch
  54.  
  55. if (cprofit / (balance - cprofit)) * 100 > 50 then
  56. roll = roll + 1
  57.  
  58. if roll < 3 then
  59. vno = vno + 1
  60. vaulted = vaulted + (balance - cprofit)
  61. vault(balance - cprofit)
  62. cprofit = 0
  63. else
  64. if balance >= bal then
  65. roll = 0
  66. end
  67. end
  68. end
  69.  
  70. if not preroll and autoroll then
  71. preroll = true
  72. nextbet = prebet
  73. end
  74.  
  75. if lastBet.nonce > 10000 then
  76. bethigh = not bethigh
  77. resetseed()
  78. end
  79. else
  80. if win then
  81. if chance == 50 then
  82. chance = math.random(1, 30)
  83.  
  84. if partialprofit < -initbal * 0.1 and partialprofit > -initbal * 0.3 then
  85. nextbet = ((partialprofit * -1) / ((99 / chance) - 1) / 7)
  86. elseif partialprofit < -initbal * 0.3 then
  87. nextbet = ((partialprofit * -1) / ((99 / chance) - 1) / 10)
  88. else
  89. nextbet = ((partialprofit * -1) / ((99 / chance) - 1) / 3.5)
  90. end
  91. else
  92. chance = strategy.startch
  93. nextbet = partialprofit * -1
  94. end
  95.  
  96. if previousbet > initbal * 0.1 then
  97. autoroll = true
  98. end
  99. else
  100. if chance < strategy.startch and currentstreak < -10 then
  101. if currentstreak == -11 then
  102. bethigh = not bethigh
  103. end
  104.  
  105. chance = chance + 0.1
  106.  
  107. if currentstreak == -15 or currentstreak == -20 then
  108. chance = strategy.startch
  109. end
  110.  
  111. if chance < 10 and partialprofit < -initbal * 0.1 then
  112. chance = math.random(10, 30)
  113. end
  114. end
  115.  
  116. if currentstreak == -1 and chance == strategy.maxch then
  117. chance = strategy.startch
  118. nextbet = previousbet
  119. else
  120. nextbet = previousbet * (1 + chance / 50)
  121. end
  122.  
  123. if (chance == strategy.startch and currentstreak == -5) or
  124. (chance == 50 and (currentstreak == -7 or currentstreak == -9)) or
  125. (chance == 50 and partialprofit < -initbal * 0.3) then
  126. nextbet = previousbet / 2
  127. end
  128. end
  129. end
  130.  
  131. if not preroll and nextbet < strategy.minbet then
  132. nextbet = strategy.minbet
  133. end
  134. end
  135. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement