Win BIG Script


SUBMITTED BY: ahmart

DATE: April 25, 2016, 11:08 a.m.

FORMAT: Text only

SIZE: 2.9 kB

HITS: 242

  1. chance= 47.13
  2. base=0.00000001
  3. bethigh = true
  4. nextbet = base
  5. investprofit = 0
  6. wincount = 0
  7. losecount=0
  8. stopnow = false
  9. first = true
  10. second = false
  11. secondwin = false
  12. third = false
  13. betcount=100
  14. -- set profit target here (Final Balance after Winning)
  15. profittarget= 999.00000000
  16. function dobet()
  17. --Randomizer
  18. r=math.random(2)
  19. if r == 1 then
  20. bethigh=true
  21. else
  22. bethigh=false
  23. end
  24. if betcount == 100 then
  25. betcount=0
  26. resetseed();
  27. else
  28. betcount=betcount+1
  29. end
  30. if (balance) >= profittarget then
  31. stop();
  32. print(balance)
  33. print("TARGET ACHIEVED!!!")
  34. end
  35. if (balance) < (nextbet) then
  36. stop();
  37. print(balance)
  38. print("INSUFFICIENT FUNDS")
  39. end
  40. done = false
  41. if win then
  42. -- switch high/low every win
  43. -- bethigh = false
  44. if(first) then
  45. -- switch high/low on the first win
  46. -- bethigh = !bethigh
  47. nextbet = base
  48. if(stopnow) then stop() end
  49. end
  50. if(second) then
  51. -- switch high/low on the second win
  52. -- bethigh = !bethigh
  53. secondwin = true
  54. second = false
  55. third = true
  56. done = true
  57. end
  58. if(third and !done) then
  59. -- switch high/low on the third win
  60. -- bethigh = !bethigh
  61. if(secondwin) then
  62. -- switch high/low on the second and third win
  63. -- bethigh = !bethigh
  64. nextbet = base
  65. if(stopnow) then stop() end
  66. else
  67. -- switch high/low on one and two lose third win
  68. -- bethigh = !bethigh
  69. nextbet = previousbet * 3
  70. end
  71. third = false
  72. first = true
  73. end
  74. else
  75. -- switch high/low on the every lose
  76. -- bethigh = true
  77. if(first and !done) then
  78. -- switch high/low on the first lose
  79. -- bethigh = !bethigh
  80. first = false
  81. second = true
  82. done = true
  83. end
  84. if(second and !done) then
  85. -- switch high/low on the second lose
  86. -- bethigh = !bethigh
  87. secondwin = false
  88. second = false
  89. third = true
  90. done = true
  91. end
  92. if(third and !done) then
  93. -- switch high/low on the third lose
  94. -- bethigh = !bethigh
  95. third = false
  96. first = true
  97. print("GO 4 THE WIN!!!")
  98. if (secondwin) then
  99. -- switch high/low on the one lose two in thrird lose
  100. -- bethigh = !bethigh
  101. nextbet = previousbet * 3
  102. else
  103. -- switch high/low only if all three lose
  104. -- bethigh = !bethigh
  105. nextbet = previousbet * 4
  106. end
  107. done = true
  108. end
  109. end
  110. end

comments powered by Disqus