Advertisement
Baliarta

MBOKJUMP setting balap

May 9th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. basebet = 0.00000002511
  2.  
  3. nextbet = basebet
  4.  
  5. chance = 49.95
  6.  
  7. targetProfit = balance * 13097
  8.  
  9. multi = 1.62
  10.  
  11. roll = 1
  12.  
  13.  
  14. addToBetAmount = 0.00000102869
  15.  
  16. tempBets = 0
  17.  
  18. tempLosses = 0
  19.  
  20. ctLosses = 0
  21.  
  22.  
  23. resetstats()
  24.  
  25. resetchart()
  26.  
  27. resetseed()
  28.  
  29. dobet = function()
  30.  
  31. if win and (partialprofit > 0)then
  32.  
  33.  
  34. ctLosses = 0
  35.  
  36. -- 1 :: every 1 wins, decrease bet amount 20%
  37.  
  38. nextbet = previousbet - (previousbet * (20 / 100))
  39.  
  40. -- 2 :: every 1 wins, set win chance 38%
  41.  
  42. chance = math.random(900,8200)/100
  43. resetpartialprofit()
  44.  
  45.  
  46. -- 6 :: first streak of 2 wins, reset bet amount
  47.  
  48. -- 7 :: streak greater than 2 wins, reset bet amount
  49.  
  50. if currentstreak >= 1 then
  51.  
  52. nextbet = basebet
  53.  
  54. end
  55.  
  56. else
  57.  
  58. -- 3 :: every 1 losses, increase bet amount 35%
  59.  
  60. ctLosses = ctLosses + 1
  61.  
  62. if ctLosses%roll == 0 then
  63.  
  64. chance = math.random(90,8500)/100
  65.  
  66. nextbet = previousbet * 1.5697
  67.  
  68.  
  69.  
  70. -- 4 :: first streak of 6 losses, add 0.002 to bet amount
  71.  
  72. if currentstreak <= -6 then
  73.  
  74. chance = math.random(10,1200)/100
  75.  
  76. nextbet = nextbet + addToBetAmount
  77.  
  78. end
  79.  
  80. end
  81.  
  82.  
  83.  
  84. -- 5 :: every 10 losses, set win chance 22%
  85.  
  86. if losses - tempLosses == 10 then
  87.  
  88. chance = math.random(1,2200)/100
  89.  
  90. tempLosses = losses
  91.  
  92. end
  93.  
  94.  
  95.  
  96. -- 8 :: every 100 bets, switch over-under
  97.  
  98. if bets - tempBets == 100 then
  99.  
  100. bethigh = not bethigh
  101.  
  102. tempBets = bets
  103.  
  104. end
  105.  
  106.  
  107.  
  108. -- 9 :: greater than XX profit, stop autobet
  109.  
  110. -- for this condition, you only need to set "targetProfit"
  111.  
  112. -- then, bot will stop himself if your profit target is reached
  113.  
  114. if balance > targetProfit then stop() end
  115.  
  116. end
  117.  
  118.  
  119.  
  120. if(partialprofit > 0) then
  121.  
  122. nextbet = basebet
  123.  
  124. ctLosses = 0
  125.  
  126. resetpartialprofit()
  127.  
  128. end
  129.  
  130. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement