mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
391 B
391 B
Function: RemoveSpawnSpellBonus(Spawn)
Description: Used in a Spell Script Only. Removes a previously applied spell bonus from the spawn
Parameters:
Spawn: Spawn – The entity to remove the bonus from.
Returns: None.
Example:
-- Example usage (remove the defense bonus when buff ends)
function remove(Caster, Target)
RemoveSpawnSpellBonus(Spawn)
end