Advertisement
Ypleitez

Untitled

Oct 11th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. label = "easy 9.9 winchance"
  2. version = "v2.2"
  3. yourEdge = 99
  4. winchance = yourEdge / 10
  5. minimalbet = 0.00000001
  6. basebet = minimalbet
  7. profit_checkpoint = balance
  8. onhardrecover = false
  9. bethigh = true
  10. chance = winchance
  11. nextbet = basebet
  12. losts = 0
  13.  
  14. function dobet()
  15. losts = losts + currentprofit
  16. if (losts >= 0) then
  17. losts = 0
  18. end
  19. -------- стоп по проигрышу--------------------
  20. if (math.abs(losts) > basebet * 100000) then
  21. pause()
  22. end
  23. ----------------------------------------------
  24. if(win) then
  25. if(balance >= profit_checkpoint) then
  26. profit_checkpoint = balance
  27. nextbet = basebet
  28. onhardrecover = false
  29. chance = winchance
  30. else
  31. nextbet = previousbet * 0.5
  32.  
  33. if (onhardrecover) then
  34. chance = chance + 1
  35. end
  36. chance = math.min(chance, 50)
  37. end
  38. else
  39. if onhardrecover then
  40. if(currentstreak%5 == 0) then
  41. nextbet = previousbet * 2
  42. end
  43. chance = chance - 1
  44. chance = math.max(chance, winchance)
  45. if (currentstreak == -30) then
  46. onhardrecover = true
  47. chance = chance * 2
  48. end
  49. else
  50. if(currentstreak%5 == 0) then
  51. nextbet = previousbet * 2
  52. end
  53.  
  54. if (currentstreak%20 == 0) then
  55. onhardrecover = true
  56. nextbet = previousbet * 0.5
  57. end
  58.  
  59. if (currentstreak == -50) then
  60. onhardrecover = true
  61. chance = chance * 2
  62. end
  63. end
  64. end
  65. nextbet = math.max(nextbet, basebet)
  66. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement