Advertisement
Baliarta

Auto kaya jika lolos

Feb 3rd, 2023
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. basebet = balance * 0.00000100
  2. chance = 50
  3. targetprofit = balance * 1.05
  4. nextbet = basebet
  5. mt = 1
  6. balance_TG = balance
  7. balance_Max1 = balance
  8. balance_Max2 = balance_Max1
  9. profit_Max = 0
  10. profit_2 = 0
  11. balmax = balance * 1.001
  12.  
  13. function dobet()
  14. if win and profit > basebet then
  15. resetstats()
  16. chance = 50
  17. nextbet = basebet
  18. end
  19. chance = math.random(3500, 6500)/100
  20. if math.random(1, 3) % 2 == 0 then
  21. bethigh = true
  22. else
  23. bethigh = false
  24. end
  25.  
  26. if balance >= targetprofit then
  27. stop()
  28. print ("Profit reached: " .. string.format("%.8f", profit))
  29. end
  30.  
  31. if profit >= 0 then
  32. mt = 1
  33. else
  34. mt = -1
  35. end
  36.  
  37. profit_2 = profit * mt
  38.  
  39. if (balance > balance_Max1) then
  40. balance_Max2 = balance_Max1
  41. balance_Max1 = balance
  42. end
  43.  
  44. if (profit_2 > profit_Max) then
  45. profit_Max = profit_2
  46. end
  47.  
  48. if (balance >= balance_Max2) then
  49. nextbet = basebet
  50. print (">> nextbet1: " .. string.format("%.8f",nextbet))
  51. else
  52. if (bets % 2 == 0) then
  53. nextbet = (profit_Max + profit_2)/2
  54. print (">> nextbet2: " .. string.format("%.8f",nextbet))
  55. else
  56. nextbet = (previousbet + profit_2)/2
  57. print (">> nextbet3: " .. string.format("%.8f",nextbet))
  58. end
  59. end
  60.  
  61. if (nextbet > (balance*0.1)) then
  62. nextbet = basebet
  63. balance_Max1 = balance
  64. end
  65.  
  66. if (nextbet < basebet) then
  67. nextbet = basebet
  68. end
  69.  
  70. if balance >= balmax then
  71. balmax = balance * 1.001
  72. nextbet = basebet
  73. print("balmax: "..balmax)
  74. end
  75. if currentstreak > 1 and previousbet > (mt/10) then nextbet = basebet end
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement