Rotating Script plug and play for safe increase on crypto coin dice gambling


SUBMITTED BY: boogeymanblue

DATE: May 8, 2022, 3:21 a.m.

FORMAT: Text only

SIZE: 3.2 kB

HITS: 676

  1. chance1=8.9109 -->11.11X payout
  2. chance2=9.8020 -->10.10X payout
  3. chance3=14.1400 -->7.77X Payout
  4. chance4=17.8378 -->5.55X Payout
  5. chance5=29.7297 -->3.33X Payout
  6. m1=1.119 --> All multipliers are at 20% More Profit
  7. m2=1.132
  8. m3=1.178
  9. m4=1.264
  10. m5=1.515
  11. target=0.10000000 --> Set your Target Profit here
  12. betfactor=0.00001 --> "Safest" for 0.001 BTC and 0.1 Eth Bankroll
  13. basebet=balance*betfactor --> 1 satoshi basebet for 0.001 BTC and 100 Ethoshis for 0.1 Eth Bankroll
  14. nextbet=basebet
  15. chance=chance1
  16. bethigh=false
  17. betcount=0
  18. session=0
  19. wincount=0
  20. lostchance=0
  21. losecount=0
  22. low=0
  23. high=0
  24. counter=0
  25. resetseed()
  26. -- resetstats()
  27. function dobet()
  28. betroll()
  29. rstseed()
  30. viewstats()
  31. betcount+=1
  32. if win then
  33. if profit>target then
  34. stop()
  35. print("TARGET REACHED!")
  36. end
  37. hilo()
  38. basebet=balance*betfactor
  39. if basebet<0.00000001 then
  40. basebet=0.00000001
  41. nextbet=basebet
  42. end
  43. nextbet=basebet
  44. wincount+=1
  45. losecount=0
  46. if wincount>0 then
  47. chance=chance1
  48. lostchance=1
  49. end
  50. if wincount>4 then
  51. chance=chance2
  52. lostchance=2
  53. end
  54. if wincount>14 then
  55. chance=chance3
  56. lostchance=3
  57. end
  58. if wincount>29 then
  59. chance=chance4
  60. lostchance=4
  61. end
  62. if wincount>49 then
  63. chance=chance5
  64. lostchance=5
  65. end
  66. if wincount>75 then
  67. chance=chance1
  68. lostchance=1
  69. wincount=0
  70. session+=1
  71. low=0
  72. high=0
  73. end
  74. else
  75. nextbet=previousbet*m1
  76. losecount+=1
  77. if lostchance==1 then
  78. if chance==chance1 then
  79. nextbet=previousbet*m1
  80. else
  81. chance=chance1
  82. nextbet=previousbet*m1
  83. end
  84. end
  85. if lostchance==2 then
  86. if chance==chance2 then
  87. nextbet=previousbet*m2
  88. else
  89. chance=chance1
  90. nextbet=previousbet*m2
  91. end
  92. end
  93. if lostchance==3 then
  94. if chance==chance3 then
  95. nextbet=previousbet*m3
  96. else
  97. chance=chance1
  98. nextbet=previousbet*m3
  99. end
  100. end
  101. if lostchance==4 then
  102. if chance==chance4 then
  103. nextbet=previousbet*m4
  104. else
  105. chance=chance1
  106. nextbet=previousbet*m4
  107. end
  108. end
  109. if lostchance==5 then
  110. if chance==chance5 then
  111. nextbet=previousbet*m5
  112. else
  113. chance=chance1
  114. nextbet=previousbet*m5
  115. end
  116. end
  117. end
  118. end
  119. function hilo()
  120. if high > low then
  121. bethigh=true
  122. else
  123. bethigh=false
  124. end
  125. if (high-low) > 15 then
  126. bethigh=false
  127. end
  128. if (low-high)> 15 then
  129. bethigh=true
  130. end
  131. end
  132. function betroll()
  133. if (lastBet.roll < chance) then
  134. low += 1
  135. end
  136. if (lastBet.roll > (99.99 - chance)) then
  137. high += 1
  138. end
  139. end
  140. function rstseed()
  141. if counter==500 then
  142. resetseed()
  143. counter=0
  144. low=0
  145. high=0
  146. else
  147. counter+=1
  148. end
  149. end
  150. function viewstats()
  151. print(" ")
  152. print("Total Bet : "..betcount)
  153. print("Current Streak Loss : "..losecount)
  154. print("Session Win : "..wincount)
  155. print("Total Sessions : "..session)
  156. print("Current Profit : "..string.format("%.8f",profit))
  157. print("Target Profit : "..string.format("%.8f",target))
  158. print("Current Balance : "..string.format("%.8f",balance))
  159. print("High :"..high.." / ".."Low :"..low)
  160. print(" ")
  161. end

comments powered by Disqus