Advertisement
Ypleitez

Untitled

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