Advertisement
Ypleitez

Untitled

Oct 26th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. label = "win85-91%los49-11% Yurich v.1.03"
  2. version = "v1.03"
  3. author = "Yurich"
  4. --yourEdge = 99
  5. --minimalbet = 0.00000001
  6. chance = math.random(85,91)
  7. basebet = minimalbet --balance/4000000
  8. nextbet = basebet
  9. losecount = 0
  10. bethigh = false
  11. losts = 0
  12. mnz = 1.01
  13. xl = 10
  14. los = false
  15. lst = 0
  16. betsn = 0
  17. arrchance1 = {48,47,45,37,31,27,27,27,21,21,21,21,17,17,17,17,17,17}
  18. arrchance2 = {49,49,48,41,37,31,31,31,27,27,27,27,19,19,19,19,19,19}
  19.  
  20. function dobet()
  21. clearConsole()
  22. betsn = betsn + 1
  23. losts = losts + currentprofit
  24. if (losts >= 0) then
  25. losts = 0
  26. end
  27. if (math.abs(losts) > basebet * 100000) then
  28. pause()
  29. end
  30. if (chance > 27) then
  31. bethigh = math.random(2) == math.random(2)
  32. end
  33. if win then
  34. if (not los) then
  35. lst = math.abs(losts)
  36. los = true
  37. end
  38. chance = math.random(85,91)
  39. basebet = minimalbet --balance/4000000
  40. nextbet = math.abs(losts) / xl
  41. mnz = 1.01
  42. losecount = 0
  43. if (lst > math.abs(losts)) then
  44. xl = xl - 1
  45. xl = math.max(xl, 1)
  46. else
  47. xl = xl + 1
  48. end
  49. else
  50. mnz = mnz + 0.01
  51. losecount = losecount + 1
  52. end
  53. if (losecount > 0) then
  54. if (losecount > 18) then
  55. chance = math.random(arrchance1[18],arrchance2[18])
  56. nextbet = minimalbet
  57. else
  58. chance = math.random(arrchance1[losecount],arrchance2[losecount])
  59. nextbet = nextbet * ((((yourEdge / (yourEdge - chance)) - 1) * mnz) + 1)
  60. end
  61. end
  62. if (losts == 0) then
  63. nextbet = basebet
  64. xl = 10
  65. los = false
  66. lst = 0
  67. if (betsn > 500) then
  68. betsn = 0
  69. changedServerSeed("")
  70. end
  71. end
  72. nextbet = math.max(nextbet,minimalbet)
  73. print(xl)
  74. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement