Advertisement
coinwalk

yes 100toshi rumble

Sep 22nd, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. riesgo = 14
  2. trucaje = 0.001
  3.  
  4. newbase=(trucaje/(2^riesgo))
  5. betcount=0
  6. bethigh=true
  7. chance=49.5
  8. counter=0
  9. high=0
  10. loss=0
  11. losscount=0
  12. lostchance=0
  13. low=0
  14. multiplier=2
  15. prebet=0.00000000
  16. preroll=14
  17. resetseed()
  18. resetstats()
  19. session=0
  20. wincount=0
  21. wins = 0
  22. evencount = 0
  23. maxlosscount = 0
  24. maxwincount = 0
  25.  
  26. function dobet()
  27. if betcount < preroll then
  28. betcount = betcount+ 1
  29. nextbet=prebet
  30. if win then
  31. wins = wins+1
  32. else
  33. loss = loss+1
  34. end
  35. end
  36.  
  37. if betcount == preroll or betcount > preroll then
  38. if betcount == preroll then
  39. wins = preroll - loss
  40. betcount = betcount+1
  41. count=wins-loss
  42. if ((count==0) or (count==-10) or (count==10)) then
  43. nextbet=prebet
  44. evencount =1
  45. print("Resetting")
  46. else
  47.  
  48. if ((count == -12) or (count == -8) or (count == -6) or (count == -2) or (count == 4 ) or (count == 8 ) or (count == 14 )) then
  49. if losscount==0 then
  50. newbase = (trucaje/(2^riesgo))
  51. nextbet=newbase
  52. else
  53. nextbet=newbase*(2^losscount)
  54. bethigh=true
  55.  
  56. end
  57. else
  58. if losscount==0 then
  59. nextbet=newbase
  60. else
  61. nextbet=newbase*(2^losscount)
  62. bethigh=false
  63.  
  64. end
  65. end
  66. end
  67.  
  68. else
  69. if evencount ==1 then
  70. print("maxwincount: ".. maxwincount)
  71. print("maxlosscount: ".. maxlosscount)
  72. print (string.format("New Base: %.8f", newbase))
  73. bethigh=true
  74. nextbet=prebet
  75. betcount=0
  76. wins=0
  77. loss=0
  78. resetstats()
  79. resetseed()
  80. evencount=0
  81.  
  82. else
  83. if win then
  84. wincount +=1
  85. if wincount > maxwincount then
  86. maxwincount = wincount
  87. end
  88. losscount=0
  89. print("maxwincount: ".. maxwincount)
  90. print("maxlosscount: ".. maxlosscount)
  91. print (string.format("New Base: %.8f", newbase))
  92. bethigh=true
  93. nextbet=prebet
  94. betcount=0
  95. wins=0
  96. loss=0
  97. resetstats()
  98. resetseed()
  99. else
  100. losscount +=1
  101. if losscount > maxlosscount then
  102. maxlosscount = losscount
  103. end
  104. wincount=0
  105. print("maxwincount: ".. maxwincount)
  106. print("maxlosscount: ".. maxlosscount)
  107. print (string.format("New Base: %.8f", newbase))
  108. bethigh=true
  109. nextbet=prebet
  110. betcount=0
  111. wins=0
  112. loss=0
  113. resetstats()
  114. resetseed()
  115. end
  116.  
  117. end
  118.  
  119. end
  120.  
  121. end
  122. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement