Advertisement
Baliarta

Ini sC nya

Apr 9th, 2024
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. ----
  2. sl = balance * 0
  3. basebet = 0.1
  4. minbet = 2e-5
  5. nextbet = basebet
  6. maxbet = balance * 0.1
  7. chance = math.random(9800, 9900)/100
  8. cprofit = 0
  9. balhi = 0
  10. drop = 0
  11. maxdrop = 0
  12. dd = 0
  13. recov = 0
  14.  
  15. local jeda = os.clock() + 3600
  16. resetseed()
  17.  
  18. if nextbet < minbet then nextbet = minbet end
  19. function dobet()
  20.  
  21. if win then bethigh = not bethigh end
  22. if cprofit > (basebet*2) then cprofit = 0 end
  23. if chance < 98 and cprofit > 0 and os.clock() > jeda then
  24. cprofit = 0
  25. jeda = os.clock() + 3600
  26. sleep(math.random(6000,9000))
  27. end
  28. if balance < sl then stop() end
  29. if balance > balhi then
  30. balhi = balance
  31. else
  32. balhi = balhi
  33. end
  34. drop = balhi - balance
  35. if drop > maxdrop then maxdrop = drop end
  36. dd = (maxdrop/balance)*100
  37.  
  38. cprofit = cprofit + currentprofit
  39.  
  40. --if wagered > 100000 then stop() end
  41.  
  42. if (recov == 0) then
  43. if cprofit < -basebet and cprofit > -(basebet*20) then
  44. chance = math.random(4900, 5000)/100
  45. if !win then
  46. nextbet = previousbet + basebet
  47. else
  48. nextbet = basebet
  49. end
  50. end
  51.  
  52. -- recovery ON
  53. if cprofit < -(basebet*20) then
  54. recov = 1
  55. nextbet = minbet
  56. end
  57.  
  58. if cprofit >= basebet then
  59. chance = math.random(9800, 9900)/100
  60. nextbet = basebet
  61. end
  62. else
  63. chance = math.random(2000,3300)/100
  64. if win then
  65. if previousbet > basebet then
  66. nextbet = minbet
  67. else
  68. nextbet = previousbet
  69. end
  70. else
  71. nextbet = previousbet * (1+(chance/50))
  72. end
  73. if nextbet > maxbet then
  74. nextbet = math.abs(cprofit)/((99/chance)-1)
  75. end
  76.  
  77. if cprofit > (basebet * 10) then
  78. resetseed()
  79. nextbet = basebet
  80. chance = math.random(9800, 9900)/100
  81. recov = 0
  82. end
  83.  
  84. -- cutlose 10 times back to c98
  85. if previousbet > (basebet * 50) then
  86. recov = 0
  87. nextbet = basebet
  88. chance = 98
  89. end
  90. end
  91. if chance > 97 then chance = math.random(9800, 9900)/100 end
  92. if chance > 44 and chance < 98 then chance = math.random(4900, 5000)/100 end
  93. if chance > 19 and chance < 34 then chance = math.random(2000, 3300)/100 end
  94. if nextbet < minbet then nextbet = minbet end
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement