IllusoryMask.lua 639 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Mage/Enchanter/Illusionist/IllusoryMask.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.12 04:10:46
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Grants invisibility to group members (AE)
  9. -- Suspends group members (AE)'s movement speed enhancements
  10. -- Dispelled when target takes damage
  11. -- This effect cancels during combat
  12. function cast(Caster, Target)
  13. Stealth(2, Target)
  14. Say(Caster, "Suspends group members (AE)'s movement speed enhancements Not Implemented. Unsure if can be cast in combat or not.")
  15. end
  16. function remove(Caster, Target)
  17. RemoveInvis(2)
  18. end