ShadowShroud.lua 399 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : Spells/ShadowShroud.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.05.04 07:05:00
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. Stealth(1)
  10. end
  11. function tick(Caster, Target)
  12. if HasMoved(Caster) then
  13. CancelSpell()
  14. end
  15. end
  16. function remove(Caster, Target)
  17. RemoveStealth()
  18. end