alfarishi

mancing

Apr 22nd, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  -- Author by shinchan/wedos g@mble
  2.  -- Gambling is gambling no matter what you do or how good your strategy is.
  3.  -- The house always wins if you keep playing. WINNERS KNOW WHEN TO STOP.
  4.  -- For All Dicebot Script Low To High V1.0
  5.  -- Use at your own risk
  6.  -- Minimum Balance : 1000
  7.  -- Recomended Balance : 10.000
  8.  
  9. lowbet    = 0.01
  10. highbet   = lowbet*2.5
  11. losecount = 0
  12. chance    = 20
  13. nextbet   = lowbet
  14. bethigh   = true
  15. target    = 20000
  16. function dobet()
  17. if balance>target then stop() end
  18.  
  19. if win then
  20. losecount = 0  
  21. bethigh   = !bethigh
  22. nextbet   = lowbet
  23. chance    = 10
  24.  
  25. else
  26. losecount+=1
  27. nextbet=lowbet
  28. chance=5
  29. end
  30. if (losecount > 1) then
  31. nextbet=previousbet
  32. chance=math.random(5,12)
  33. end
  34. if (losecount >10 ) then
  35. nextbet=previousbet
  36. chance=12.5
  37. end
  38. if (losecount >11 ) then
  39. nextbet = previousbet
  40. chance  = 12.5
  41. end
  42. if (losecount >12 ) then
  43. nextbet=previousbet
  44. chance=12.5
  45. end
  46. if (losecount >13) then
  47. nextbet = previousbet
  48. chance  = 5
  49. end
  50. if (losecount >14 ) then
  51. nextbet = previousbet
  52. chance  = 5
  53. end
  54. if (losecount >15 ) then
  55. nextbet = previousbet
  56. chance  = 5
  57. end
  58. if (losecount >16 ) then
  59. nextbet = previousbet
  60. chance  = 12.5
  61. end
  62. if (losecount > 17) then
  63. nextbet=previousbet*1.13
  64. chance=12.5
  65. end
  66. if (losecount > 18) then
  67. nextbet=previousbet*1.14
  68. chance=12.5
  69. end
  70. if (losecount > 19) then
  71. nextbet = previousbet*1.21
  72. chance  = 5
  73. end
  74. if (losecount > 21) then
  75. nextbet=previousbet*1.11
  76. chance=5
  77. end
  78. if (losecount > 22) then
  79. nextbet = previousbet*1.25
  80. chance  = 12.5
  81. end
  82. if (losecount > 23) then
  83. nextbet = previousbet*1.25
  84. chance  = 12.5
  85. end
  86. if (losecount > 24) then
  87. nextbet = previousbet*1.25
  88. chance  = 12.5
  89. end
  90. if (losecount > 25) then
  91. nextbet = previousbet*1.21
  92. chance  = 5
  93. end
  94. if (losecount > 26) then
  95. nextbet = highbet*1.1
  96. chance  = 5
  97. end
  98. if (losecount > 27) then
  99.     nextbet = previousbet*2.51
  100. chance  = 5
  101. end
  102. if (losecount > 28) then
  103. nextbet = previousbet*2.5
  104. chance  = 16.5  
  105. end
  106. if (losecount > 29) then
  107. nextbet = previousbet*1.5
  108. chance  = 12.5
  109. end
  110. if (losecount > 30) then
  111. nextbet = previousbet*1.5
  112. chance  = 16.5
  113. end
  114. if (losecount > 31) then
  115. nextbet = previousbet*0.85
  116. chance  = 5
  117. end
  118. if (losecount > 35) then
  119. nextbet = previousbet*1.25
  120. chance  = 5
  121. end
  122. if (losecount > 39) then
  123. nextbet = previousbet*1.215
  124. chance  = 13.30  
  125. end
  126.  
  127.  
  128.     end
  129. end
Add Comment
Please, Sign In to add comment