Advertisement
Ypleitez

Untitled

Jan 29th, 2024
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. scriptname = 'script Wager win rate up 90% + burn'
  2. ---------------------------------------------------
  3. initbal = balance*0.01 -- set initbal
  4. minbet = 1.5e-5 -- set minimal bet
  5. chance = 90 -- set start chance
  6. maxch = 98 -- set max chance
  7. div = 500 -- set 100=high 500=medium 1000=low
  8. proburn = balance*0.01 -- set limit profit for burn
  9. maxbet = balance*0.03 -- set max bet
  10. ----------------- do not touch --------------------
  11. burnon = true
  12. nextbet = initbal/div
  13. bethigh = true
  14. burn = false
  15. recov = false
  16. winbet = 0
  17. losebet = 0
  18. rtp = 0
  19. roll = 0
  20. cprofit = 0
  21. oldch = chance
  22. startbal = balance
  23. resetseed()
  24. resetpartialprofit()
  25. function dobet()
  26. cprofit = cprofit+currentprofit
  27. if win then winbet = winbet+previousbet else losebet=losebet+previousbet end
  28. rtp = (winbet/(winbet+losebet))*100 log("-- rtp \t"..rtp.."% \t win "..winbet.."\t lose "..losebet.." ")
  29. if burn == false and burnon and cprofit > proburn then burn = true chance = 99.99 nextbet = cprofit*0.25 end
  30. if burn then
  31. if cprofit < 0 or nextbet > cprofit then
  32. resetpartialprofit() burn = false chance = 90 nextbet = initbal/div
  33. end
  34. else
  35. if recov then
  36. if win then
  37. chance = math.random(25,35) oldch = chance
  38. if partialprofit < -initbal then
  39. nextbet = (partialprofit/-(99/chance))/3
  40. else
  41. nextbet = (partialprofit/-(99/chance))/2
  42. end
  43. else
  44. chance = math.random(oldch*100, (oldch+1)*100)/100
  45. nextbet = previousbet*(1+(chance/50))
  46. if currentstreak < -(99/chance)*2 or partialprofit < -balance*0.3 then
  47. nextbet = previousbet*2
  48. if partialprofit < -startbal*0.3 and chance < 31 then nextbet = previousbet*0.5 end
  49. if chance < 31 then chance = math.random(50,60) end
  50. end
  51. end
  52. if partialprofit > 0 then resetpartialprofit() recov = false chance = 90 nextbet = initbal/div end
  53. else
  54. if partialprofit > 0 then
  55. resetpartialprofit() nextbet = initbal/div chance = math.random(9000,9100)/100 roll = 0
  56. else
  57. if roll == 1 then resetseed() bethigh = !bethigh end
  58. if win then
  59. if chance < 90 then chance = oldch end
  60. chance = chance + 1
  61. else
  62. if chance < 70 then chance = chance + math.random(1,3) else
  63. chance = chance -1 end
  64. end
  65. nextbet = previousbet*1.5
  66. if partialprofit < -maxbet then
  67. if currentstreak%-2 == 0 then
  68. if roll%10 == 0 then
  69. if chance > 70 then oldch = chance end
  70. chance = 50
  71. else
  72. chance = chance + 1
  73. end
  74. else
  75. chance = math.random(maxch-3,maxch)
  76. end
  77. end
  78. if chance > maxch then chance = maxch end
  79. end
  80. if partialprofit < -maxbet then
  81. if lastBet.chance < 90 and !win then
  82. chance = maxch
  83. nextbet = previousbet*1.5
  84. else
  85. nextbet = maxbet roll = roll+1
  86. end
  87. if currentstreak <= -1 then recov = true nextbet = minbet chance = math.random(25,30) end
  88. end
  89. end
  90. if recov == false then
  91. if nextbet > maxbet then
  92. if chance < maxch then chance = maxch end
  93. nextbet = maxbet
  94. end
  95. if currentstreak <= -1 and nextbet > maxbet then recov = true nextbet = minbet chance = math.random(25,30) end
  96. end
  97. end
  98. if chance < 50 and partialprofit < -startbal*0.3 then chance = math.random(50,60) end
  99. nextbet = math.max(nextbet, minbet)
  100. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement