AdvanceWarning.lua 367 B

1234567891011121314151617
  1. --[[
  2. Script Name : Spells/AA/AdvanceWarning.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.13 04:12:55
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Prevents AOE (except when direct)
  9. function cast(Caster, Target)
  10. AddImmunitySpell(7, Target)
  11. end
  12. function remove(Caster, Target)
  13. RemoveImmunitySpell(7, Target)
  14. end