Ypleitez

Untitled

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