Advertisement
ScriptMasterz

BITSLER DICEBOT SCRIPT 2017

Oct 8th, 2017
2,294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. --Scrypt created by Scriptmasterz
  2.  
  3. -- 8.91% Chance Strategy
  4. -- Recommended Balance 0.01 BTC Bankroll
  5. -- Can Endure 70+ Losing Streaks at 0.001 to 0.01 BTC balance
  6. -- To endure 90 Losing Streaks, edit the betfactor =>> betfactor=0.000025
  7. -- Donations Accepted, Send to = 1B2MMStRjqu63REghqwfBZNjShvKdUu5PT (BTC Address)
  8.  
  9.  
  10.  
  11.  
  12. -- 8.91% Chance Strategy
  13.  
  14. chance = 8.91 -->> 8.91% Win Chance
  15. betfactor=0.00005
  16. base=balance*betfactor -->> 50 Sats BB at 0.01 BTC Bankroll, Auto Adjust to Increasing Bankroll
  17. prebet = 0.00000001
  18. multiplier=1.1111 -- >> 11.11% Increase on Lose
  19.  
  20. target=0.00100000 -- <<Stop at this Profit Target>>
  21.  
  22. nextbet = prebet
  23. losecount = 0
  24. betcount = 0
  25. bethigh=false
  26. wincount=0
  27. highloss=0
  28. totalloss=0
  29. total=0
  30. avehit=0
  31. counter=0
  32. b=0
  33.  
  34. low=0
  35. high=0
  36.  
  37. --resetstats()
  38. resetseed()
  39.  
  40. function dobet()
  41.  
  42. if (lastBet.roll < chance) then
  43. low += 1
  44. end
  45.  
  46. if (lastBet.roll > (100 - chance)) then
  47. high += 1
  48. end
  49.  
  50. print(" ")
  51. print("Total Bet : "..betcount)
  52. print("Current Streak Loss : "..losecount)
  53. print("Highest Loss Streak : "..highloss)
  54. print("Number of Wins : "..wincount)
  55. print("Average Losses Before Win : "..string.format("%.2f",avehit))
  56. print("Profit :"..string.format("%.8f",profit))
  57. print(" ")
  58. print("Bet Amount :"..string.format("%.8f",nextbet))
  59. print("Current Balance : "..string.format("%.8f",balance))
  60. print("High :"..high.." / ".."Low :"..low)
  61. print(" ")
  62.  
  63. if counter > 500 then
  64. resetseed()
  65. low=0
  66. high=0
  67. counter=0
  68. else
  69. counter+=1
  70. end
  71.  
  72. if win then
  73. base=balance*betfactor
  74. nextbet = prebet
  75. wincount+=1
  76. total+=1
  77. totalloss+=losecount
  78. avehit=totalloss/total
  79. losecount = 0
  80. betcount += 1
  81. b+=1
  82.  
  83. if b>1 then
  84. bethigh=!bethigh
  85. b=0
  86. end
  87.  
  88. if profit>target then
  89. stop()
  90. print("TARGET REACHED!")
  91. end
  92.  
  93. else
  94.  
  95. losecount += 1
  96. betcount += 1
  97. nextbet = prebet
  98.  
  99. end
  100.  
  101. if losecount > highloss then
  102. highloss = losecount
  103. end
  104.  
  105. if (losecount > 9) then
  106. nextbet = 0.00000002
  107. end
  108.  
  109. if (losecount > 13) then
  110. nextbet = balance*betfactor
  111. if nextbet<0.00000005 then
  112. nextbet=0.00000005
  113. end
  114. end
  115.  
  116. if (losecount > 14) then
  117. nextbet = previousbet*multiplier
  118. end
  119. end
  120. end
  121. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement