Advertisement
Baliarta

SC sabar ngenteni

Jan 27th, 2023
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. --SC Sabar Menunggu JP --
  2.  
  3. --work di Casino Royale bet--
  4. -- JP ada di LS 14 dan LS 15 sabar menunggu yaa ----
  5.  
  6. resetseed()
  7. resetseed()
  8. resetstats()
  9.  
  10. chance = math.random(60, 70)
  11.  
  12. base = balance/2150431615 --- tahan sampai ls 15 ketemu ls 16 ambyar---
  13.  
  14. nextbet = base
  15. bethigh = false
  16. rollcount = 20
  17.  
  18. i = balance*1.5
  19.  
  20. k = 0.0009
  21.  
  22.  
  23. target = balance*1.5
  24. bethigh = true
  25. low = 0
  26. high = 0
  27. losecount = 0
  28. wincount = 0
  29.  
  30.  
  31. function dobet()
  32.  
  33. if (lastBet.roll < chance) then
  34. low += 1
  35. end
  36.  
  37. if (lastBet.roll > (100 - chance)) then
  38. high += 1
  39. end
  40.  
  41. if wincount==16 then
  42. resetseed()
  43. bethigh=!bethigh
  44. wincount=0
  45. end
  46.  
  47. if(i>k)then
  48. resetseed()
  49. end
  50.  
  51. if balance>target then
  52.  
  53. stop();
  54.  
  55. print("stop now")
  56.  
  57. end
  58.  
  59.  
  60.  
  61. chance = math.random(5, 20)
  62.  
  63. multiplier = 2
  64.  
  65.  
  66. if win then
  67.  
  68. wincount+=1
  69.  
  70. nextbet = base
  71.  
  72. else
  73.  
  74. nextbet = previousbet * multiplier
  75.  
  76. end
  77.  
  78. if currentstreak <= -8 then
  79.  
  80. chance = math.random(40, 41)
  81.  
  82. nextbet = previousbet*5
  83.  
  84. end
  85.  
  86. if currentstreak <= -9 then
  87.  
  88. chance = math.random(41, 42 )
  89.  
  90. nextbet = previousbet*6
  91.  
  92. end
  93.  
  94. if currentstreak <= -10 then
  95.  
  96. chance = math.random(43, 44)
  97.  
  98. nextbet = previousbet*7
  99.  
  100. end
  101.  
  102. if currentstreak <= -11 then
  103.  
  104. chance = math.random(45, 47)
  105.  
  106. nextbet = previousbet*8
  107.  
  108. end
  109.  
  110. if currentstreak <= -12 then
  111.  
  112. chance = math.random(48, 50)
  113.  
  114. nextbet = previousbet*9
  115.  
  116. end
  117.  
  118. if currentstreak <= -13 then
  119.  
  120. chance = math.random(20, 25)
  121.  
  122. nextbet = previousbet*10
  123.  
  124. end
  125.  
  126. if currentstreak <= -14 then
  127.  
  128. chance = math.random(25, 30)
  129.  
  130. nextbet = previousbet*10
  131.  
  132. end
  133.  
  134. if currentstreak <= -15 then
  135.  
  136. chance = math.random(55, 59)
  137.  
  138. nextbet = previousbet*10
  139.  
  140. end
  141.  
  142. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement