CatsEye.lua 565 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Conjuror/CatsEye.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.26 12:10:07
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Grants See Invisibility to group members (AE)
  10. -- Grants Sonic Vision to group members (AE)
  11. function cast(Caster, Target)
  12. SetVision(Target, 2)
  13. Say(Caster, "Still need see invis and verify that this is sonic vision")
  14. end
  15. function remove(Caster, Target)
  16. SetVision(Target, 0)
  17. end