Advertisement
coinwalk

5doge at least

Jul 5th, 2019
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. chance = 70
  2. divider = 100000 -- Change Higher for safety
  3. basebet =balance / divider
  4. nextbet = basebet
  5. losecount = 0
  6. bethigh = false
  7. losetg=false
  8. maxmultiplier=1.999
  9. minmultiplier=1.91
  10. maxbet=basebet *1.5
  11. minbet=basebet
  12. maxchance=75
  13. minchance=70
  14. profittarget= 3500
  15. a=5
  16. resetseed();
  17. resetseed();
  18. resetseed();
  19. resetseed();
  20. resetseed();
  21. resetseed();
  22. resetseed();
  23. function dobet()
  24.  
  25. if balance < 0.002000 then
  26. print("")
  27. print("Security Stop")
  28. stop()
  29. end
  30.  
  31. if (balance) >= profittarget then
  32. stop();
  33. print(balance)
  34. print("TARGET ACHIEVED!!!")
  35. end
  36. if (win) then
  37. --ching()
  38. bethigh= math.random(0,100)%2==0
  39. chance=math.random(minchance*100,maxchance*100)/100
  40. if bets < 100 then
  41. divider= 40000
  42. else
  43. if bets < 1000 then
  44. divider= 50000
  45. else
  46. if bets < 10000 then
  47. divider= 80000
  48. else
  49. divider= 100000
  50. end
  51. end
  52. end
  53. basebet =balance / divider
  54. maxbet=basebet *1.5
  55. minbet=basebet
  56. nextbet = math.random(minbet*10000000,maxbet*10000000)/10000000
  57.  
  58. if( losecount>5) then
  59. a=losecount
  60. resetseed(); resetseed();resetseed();resetseed();
  61. resetseed(); resetseed();resetseed();resetseed();
  62. resetseed(); resetseed();resetseed();resetseed();
  63. resetseed(); resetseed();resetseed();resetseed();
  64. resetseed(); resetseed();resetseed();resetseed();
  65. resetseed(); resetseed();resetseed();resetseed();
  66. resetseed(); resetseed();resetseed();resetseed();
  67. resetseed(); resetseed();resetseed();resetseed();
  68. resetseed(); resetseed();resetseed();resetseed();
  69. resetseed(); resetseed();resetseed();resetseed();
  70. resetseed(); resetseed();resetseed();resetseed();
  71. resetseed(); resetseed();resetseed();resetseed();
  72. resetseed(); resetseed();resetseed();resetseed();
  73. resetseed(); resetseed();resetseed();resetseed();
  74. resetseed(); resetseed();resetseed();resetseed();
  75. resetseed(); resetseed();resetseed();resetseed();
  76. resetseed(); resetseed();resetseed();resetseed();
  77. resetseed(); resetseed();resetseed();resetseed();
  78. resetseed(); resetseed();resetseed();resetseed();
  79. resetseed(); resetseed();resetseed();resetseed();
  80. resetseed(); resetseed();resetseed();resetseed();
  81. resetseed(); resetseed();resetseed();resetseed();
  82. resetseed(); resetseed();resetseed();resetseed();
  83. resetseed(); resetseed();resetseed();resetseed();
  84. resetseed(); resetseed();resetseed();resetseed();
  85. resetseed(); resetseed();resetseed();resetseed();
  86. resetseed(); resetseed();resetseed();resetseed();
  87. resetseed(); resetseed();resetseed();resetseed();
  88. resetseed(); resetseed();resetseed();resetseed();
  89. resetseed(); resetseed();resetseed();resetseed();
  90. resetseed(); resetseed();resetseed();resetseed();
  91. end
  92. if( losecount>9) then
  93. stop();
  94. print("Loss count too much!!!!!!!! Relax please!!")
  95. end
  96. losecount = 0
  97. if nextbet >20 then
  98. stop();
  99. print("bet value error!!!")
  100. end
  101. end
  102.  
  103. if (!win) then
  104. print ("LOSE")
  105.  
  106.  
  107. losecount += 1
  108. if losecount%2 == 0 then resetseed();
  109. end
  110. if losecount == a-1 then
  111. losetg=!losetg end
  112. if (losetg) then
  113. bethigh=!bethigh
  114. print("LOST toggle hi-lo mode")
  115. end
  116.  
  117.  
  118. if (losecount > 1) then
  119. nextbet = previousbet*math.random(minmultiplier*100,maxmultiplier*100)/100
  120. chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*90
  121. if chance < 46 then
  122. chance = 46 end
  123. print(nextbet)
  124. print(chance)
  125. print(profit)
  126. print(bets)
  127. else
  128. nextbet = previousbet*math.random(minmultiplier*100,maxmultiplier*100)/100
  129. chance = (1/(((basebet+nextbet))/nextbet))*95
  130. if chance<47 then
  131. chance=47 end
  132. print(nextbet)
  133. print(chance)
  134. print(profit)
  135. print(bets)
  136. if nextbet*2> balance then stop(); end
  137. end
  138. end
  139. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement