Guest User

Untitled

a guest
Jan 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. function slowCuring()
  2. if healing.slow and not illusion then
  3. healing.slow = false
  4. healing.slowTracking = true
  5. if healingSlowTimer then
  6. killTimer(healingSlowTimer)
  7. healingSlowTimer = nil
  8. end
  9. if slowCuringTimer then
  10. killTimer(slowCuringTimer)
  11. end
  12. slowCuringTimer = tempTimer( 1.5, [[healing.slowTracking = false
  13. if aff.aeon or setting.retard then
  14. setting.checkSlow = true
  15. checkSlow()
  16. end]])
  17. elseif not healing.slow and not illusion then
  18. healing.slowTracking = false
  19. setting.checkSlow = true
  20. if not setting.retard then
  21. aff.aeon = true
  22. end
  23. if healingSlowTimer then
  24. killTimer(healingSlowTimer)
  25. healingSlowTimer = nil
  26. end
  27. if slowCuringTimer then
  28. killTimer(slowCuringTimer)
  29. slowCuringTimer = nil
  30. end
  31. else
  32. setting.checkSlow = true
  33. if not setting.retard and not aff.aeon then
  34. aff.aeon = true
  35. elseif setting.retard then
  36. aff.aeon = false
  37. end
  38. end
  39. end
Add Comment
Please, Sign In to add comment