Advertisement
Baliarta

Super Mbokjump 1

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