UntamedShroud.lua 386 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Priest/Druid/Fury/UntamedShroud.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.28 06:10:39
  5. Script Purpose :
  6. :
  7. --]]
  8. function precast(Caster)
  9. return not IsInCombat(Caster)
  10. end
  11. function cast(Caster, Target)
  12. Stealth(2, Target)
  13. end
  14. function remove(Caster, Target)
  15. RemoveInvis(Target)
  16. end