Ypleitez

Untitled

Oct 9th, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. chance = math.random(53,54)
  2. prebet1=0.05
  3. preroll1=0.13
  4. base=prebet1*3.8
  5.  
  6. prebet=prebet1
  7. preroll=preroll1
  8. nextbet=prebet
  9. betlimit=prebet*20.9
  10. target=balance+9999999999
  11. profittarget=balance+base
  12. initbalance=balance
  13. losslimit=balance*5.90
  14.  
  15. firstbet=prebet
  16. secondbet=prebet
  17. temp=0
  18. bethigh=true
  19. betcount=0
  20. count=0
  21.  
  22.  
  23. resetseed()
  24.  
  25. function dobet()
  26.  
  27. betcount+=1
  28. count+=1
  29. betlimit=prebet*500
  30. e=currentstreak+preroll
  31.  
  32. if !win and (previousbet>firstbet) then
  33. secondbet=firstbet
  34. firstbet=previousbet
  35. end
  36.  
  37. -- <<Bet Randomizer>>
  38. r=math.random(2)
  39. if r == 1 then
  40. bethigh=true
  41. else
  42. bethigh=false
  43. end
  44. -- <<Bet Randomizer>>
  45.  
  46. if betcount == 25 then
  47. betcount=0
  48. print("Balance Limit"..string.format("%.8f", initbalance))
  49. print(" ")
  50. print("Profit : "..string.format("%.8f", profit))
  51. print(" ")
  52. end
  53.  
  54. if count> 500 then
  55. resetseed()
  56. count=0
  57. end
  58.  
  59. if balance >= profittarget then
  60. print("=====================")
  61. print("PROFIT SET REACHED!!!")
  62. print("Profit : "..string.format("%.8f", profit))
  63. print("Final Balance : "..string.format("%.8f", balance))
  64. print("=====================")
  65. firstbet=prebet
  66. secondbet=prebet
  67. nextbet=prebet
  68. preroll=preroll1
  69. base=prebet*preroll
  70. profittarget=balance+base
  71. losslimit=balance*2.25
  72. end
  73.  
  74. if balance >= target then
  75. stop()
  76. print("")
  77. print("=====================")
  78. print("TARGET REACHED!!!")
  79. print("Profit : "..string.format("%.8f", profit))
  80. print("Final Balance : "..string.format("%.8f", balance))
  81. print("=====================")
  82. print(" ")
  83. end
  84.  
  85. if losslimit>balance then
  86. prebet=prebet1*2.99
  87. base=prebet*3.999
  88. losslimit=balance*4.99
  89. else
  90. prebet=prebet1
  91. base=prebet*2
  92. end
  93.  
  94. if balance > initbalance then
  95. if (balance-initbalance)==0 then
  96. nextbet=prebet
  97. end
  98.  
  99. if (balance-initbalance)>0 then
  100. nextbet=prebet
  101. end
  102.  
  103. initbalance=balance
  104. firstbet=prebet
  105. secondbet=prebet
  106. end
  107.  
  108. if balance < initbalance then
  109.  
  110. if (initbalance-balance)==prebet then
  111. nextbet=prebet
  112. end
  113.  
  114. if (initbalance-balance)==(prebet*3.99) then
  115. nextbet=prebet
  116. end
  117.  
  118. if (initbalance-balance)>(prebet*3.99) then
  119. nextbet=firstbet+secondbet
  120. end
  121.  
  122.  
  123. if win and (initbalance>balance) then
  124. nextbet=previousbet
  125. end
  126. end
  127.  
  128. if !win and e==2 then
  129. nextbet=previousbet
  130. end
  131.  
  132. end --End of Dobet
  133. end
  134.  
  135. if !win and e==2 then
  136. nextbet=previousbet
  137. end
  138.  
  139. end --End of Dobet
Add Comment
Please, Sign In to add comment