Ypleitez

Untitled

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