mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
494 B
494 B
Function: RemoveProc(spawn, item)
Description: Remove proc that was applied in a spell script or item script. Will apply to spawn unless item is not specified, then all spell targets are applicable.
Parameters:
spawn(Spawn) - Spawn object representingspawn.item(Item) - Item object representingitem.
Returns: None.
Example:
-- From Spells/BastensRunesofSurety.lua
function remove(Caster, Target)
RemoveSpellBonus()
RemoveProc()
end