Advertisement
Baliarta

Cap Nyonya mener

Dec 11th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. basebet = 1e-7
  2. payouts = {15,17}
  3. modulus = 1
  4. incrmnt = 16.6
  5. maxdrop = 0
  6. maxlose = 0
  7. target = balance*1.12
  8.  
  9. nextbet = basebet
  10. chance = 99/payouts[1]
  11. balhigh = balance
  12. baldrop = 0
  13. losecount = 0
  14. stopwin = false
  15.  
  16. function dobet()
  17. bethigh = math.random(99)%2 > 0
  18. if win then
  19. losecount = 0
  20. nextbet = basebet
  21. chance = 95/math.random(payouts[1],payouts[2])
  22. else
  23. losecount = losecount+1
  24. chance = adjust(chance,-1.5)
  25. if losecount%modulus == 0 then
  26. nextbet = adjust(previousbet,incrmnt)
  27. end
  28. end
  29.  
  30. if (losecount%25==0 and losecount > 0) then
  31. chance = adjust(chance,15)
  32. end
  33.  
  34. if (losecount == 35) then
  35. chance = adjust(chance,50)
  36. end
  37.  
  38. if (losecount == 45) then
  39. chance = adjust(chance,45)
  40. end
  41.  
  42. if (losecount == 55) then
  43. chance = adjust(chance,45)
  44. end
  45.  
  46. if balance > target then stop() end
  47.  
  48. if partialprofit > 0 then
  49. resetpartialprofit()
  50. if stopwin then stop() end
  51. end
  52. balhigh = math.max(balhigh,balance)
  53. baldrop = math.min(baldrop,partialprofit)
  54. if partialprofit/balhigh*-100 > maxdrop and maxdrop > 0 then
  55. nextbet = partialprofit/((99/chance)-1)*-1.01
  56. stopwin = true
  57. end
  58.  
  59. if losecount > maxlose and maxlose > 0 then
  60. nextbet = partialprofit/((99/chance)-1)*-1.01
  61. stopwin = true
  62. end
  63.  
  64. print(string.format("++ [ %.8f ] [ %.2f ]",baldrop*-1,baldrop/balhigh*-100))
  65.  
  66. end
  67.  
  68.  
  69. function adjust(x,y)
  70. return x+(x*(y/100))
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement