1234567891011121314151617 |
- --[[
- Script Name : Spells/AA/AdvanceWarning.lua
- Script Author : neatz09
- Script Date : 2020.12.13 04:12:55
- Script Purpose :
- :
- --]]
- -- Prevents AOE (except when direct)
- function cast(Caster, Target)
- AddImmunitySpell(7, Target)
- end
- function remove(Caster, Target)
- RemoveImmunitySpell(7, Target)
- end
|