1234567891011121314151617181920212223 |
- --[[
- Script Name : Spells/ShadowShroud.lua
- Script Author : LordPazuzu
- Script Date : 2024.05.04 07:05:00
- Script Purpose :
- :
- --]]
- function cast(Caster, Target)
- Stealth(1)
- end
- function tick(Caster, Target)
- if HasMoved(Caster) then
- CancelSpell()
- end
- end
- function remove(Caster, Target)
- RemoveStealth()
- end
|