Advertisement
Ypleitez

Untitled

Nov 17th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. --yourEdge = 99
  2. multiplier = 10
  3. chance = yourEdge / multiplier
  4. --minimalbet = 0.00000001
  5. --basebet = balance / 500000
  6. basebet = minimalbet * 1
  7. nextbet = basebet
  8. losts = 0
  9. stoplost = basebet * 10000
  10. bethigh = true
  11. GoOtb = false
  12. --lost = 0
  13.  
  14. function dobet()
  15. --stopProfit(0.2)
  16. --lost = lost + currentprofit
  17. --if (lost > 0) then
  18. -- lost = 0
  19. --end
  20. losts = losts + currentprofit
  21. if (losts > 0) then
  22. losts = 0
  23. end
  24. if (math.abs(losts) > stoplost) then
  25. pause()
  26. end
  27. if (not GoOtb) then
  28. if (win) then
  29. multiplier = 10
  30. chance = yourEdge / multiplier
  31. else
  32. if (currentstreak%60 == 0) then
  33. multiplier = 5
  34. chance = yourEdge / multiplier
  35. nextbet = math.abs(losts) / (multiplier - 1) * 1.2
  36. else
  37. multiplier = multiplier + 1.1
  38. if (currentstreak%20 == 0) then
  39. multiplier = multiplier * 0.50
  40. nextbet = nextbet * 2.1
  41. end
  42. chance = yourEdge / multiplier
  43. end
  44. end
  45. if (math.abs(lost) > basebet * 1000) then
  46. GoOtb = true
  47. losts = 0
  48. chance = yourEdge / 2
  49. end
  50. else
  51. bethigh = math.random(2) == math.random(2)
  52. if (win) then
  53. if (currentstreak == 1 and otb) then
  54. nextbet = math.abs(lost) / ((yourEdge / chance) - 1) * 0.35
  55. else
  56. nextbet = nextbet * 0.75
  57. end
  58. else
  59. if (currentstreak%3 == 0) then
  60. nextbet = nextbet * 0.5
  61. else
  62. nextbet = nextbet * 2
  63. end
  64. if (currentstreak <= -5) then
  65. nextbet = basebet
  66. otb = true
  67. end
  68. end
  69. if (losts == 0) then
  70. nextbet = basebet
  71. otb = false
  72. bethigh = not bethigh
  73. end
  74. end
  75. if (lost == 0) then
  76. --basebet = balance / 500000
  77. multiplier = 10
  78. chance = yourEdge / multiplier
  79. nextbet = basebet
  80. bethigh = not bethigh
  81. GoOtb = false
  82. end
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement