Advertisement
Ypleitez

Untitled

Oct 21st, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. label = "rebuild 9.9 Yurich v.2.04"
  2. version = "v2.04"
  3. author = "Yurich" --rebuild
  4. yourEdge = 99
  5. winchance = 9.9
  6. basebet = 0.00000001--0.00000001
  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. if (math.abs(losts) > basebet * 10000) then
  20. pause()
  21. end
  22. if(win) then
  23. if(balance >= profit_checkpoint) then
  24. profit_checkpoint = balance
  25. nextbet = basebet
  26. onhardrecover = false
  27. chance = winchance
  28. else
  29. nextbet = math.abs(losts)/ ((yourEdge/chance)-1) * 0.5
  30. if (onhardrecover) then
  31. chance = chance + 1
  32. end
  33. chance = math.min(chance, 50)
  34. end
  35. else
  36. if (onhardrecover) then
  37. if (math.abs(currentstreak)%15 == 0) then
  38. chance = chance * 2
  39. else
  40. chance = chance - 1
  41. chance = math.max(chance,winchance)
  42. end
  43. nextbet = math.abs(losts)/ ((yourEdge/chance)-1) * 1.2
  44. else
  45. if(math.abs(currentstreak)%5 == 0) then
  46. nextbet = previousbet * 2
  47. end
  48. if (math.abs(currentstreak)%16 == 0) then
  49. nextbet = previousbet * 0.75
  50. end
  51. if (math.abs(currentstreak) == 26) then
  52. onhardrecover = true
  53. chance = chance * 3
  54. end
  55. end
  56. end
  57. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement