mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
430 B
430 B
Function: RemoveSkillBonus(spawn)
Description: Remove's any skill bonuses added to the Spawn (if outside a spells script) or all spell targets of a spell from AddSkillBonus (if inside a spell script).
Parameters:
spawn(Spawn) - Spawn object referencespawn.
Returns: None.
Example:
-- From Spells/AA/BattlemagesFervor.lua
function remove(Caster, Target)
RemoveSkillBonus(Target)
end