Faucet Grind


SUBMITTED BY: bubby131

DATE: Oct. 24, 2017, 11:21 p.m.

FORMAT: Text only

SIZE: 2.1 kB

HITS: 413

  1. -- 3X Chance Strategy by McGuyver
  2. chance = 33.00
  3. multiplier=1.65
  4. base=balance*0.00000125 --("Safe" at 0.04 BTC Bankroll) --> if you want a flat base, just replace this: base=0.00000002
  5. prebet = 0.00000001
  6. preroll=2
  7. target=balance+0.00050000
  8. nextbet = prebet
  9. losecount = 0
  10. betcount = 0
  11. bethigh=false
  12. highloss=0
  13. hibet=0
  14. totalloss=0
  15. totalwin=0
  16. wincount=0
  17. aveloss=0
  18. hbid=0
  19. counter=0
  20. e=0
  21. resetseed()
  22. --resetstats()
  23. function dobet()
  24. e=currentstreak+preroll
  25. rstseed()
  26. print(" ")
  27. print("Total Bet : "..betcount)
  28. print("Current Streak Loss : "..losecount)
  29. print("Highest Loss Streak : "..highloss)
  30. print("Average Loss Streak : "..string.format("%.2f",aveloss))
  31. print("Highest Bet :"..string.format("%.8f",hibet))
  32. print("Highest Win Bet ID : "..hbid)
  33. print("Profit :"..string.format("%.8f",profit))
  34. print(" ")
  35. print("Bet Amount :"..string.format("%.8f",nextbet))
  36. print("Current Balance : "..string.format("%.8f",balance))
  37. print(" ")
  38. if base<0.00000002 then
  39. base=0.00000002
  40. end
  41. if win then
  42. if highloss == losecount then
  43. hbid=lastBet.Id
  44. end
  45. nextbet = prebet
  46. wincount+=1
  47. totalwin+=1
  48. totalloss+=losecount
  49. aveloss=totalloss/totalwin
  50. losecount = 0
  51. betcount += 1
  52. base=balance*0.00000125 --> --> if you want a flat base, just replace this: base=0.00000002
  53. if wincount==1 then
  54. bethigh=false
  55. end
  56. if wincount==3 then
  57. bethigh=true
  58. wincount=0
  59. end
  60. if balance>target then
  61. stop()
  62. end
  63. else
  64. losecount += 1
  65. betcount += 1
  66. nextbet = prebet
  67. end
  68. if losecount > highloss then
  69. highloss = losecount
  70. end
  71. if e==0 then
  72. nextbet = base
  73. end
  74. if e<0 then
  75. nextbet=previousbet*multiplier
  76. end
  77. if nextbet > hibet then
  78. hibet=nextbet
  79. end
  80. end
  81. end
  82. end
  83. function rstseed()
  84. if counter==500 then
  85. resetseed()
  86. counter=0
  87. else
  88. counter+=1
  89. end
  90. end

comments powered by Disqus