UnregisterForMagicEffectApplyEvent - ScriptObject
Revision as of 11:35, 3 December 2015 by imported>Plplecuyer
Member of: ScriptObject
Unregisters this script from a OnMagicEffectApply event matching the filters given to this function. The filters must match the filters given to the RegisterForMagicEffectApplyEvent function.
Only the script that unregisters for an event will stop receiving it. Other scripts attached to the same form, alias, or magic effect will still receive the event if they registered for it separately.
Syntax[edit | edit source]
Function UnregisterForMagicEffectApplyEvent(ScriptObject akTarget, ScriptObject akCasterFilter = None, Form akEffectFilter = None,\
bool abMatch = true) native
Parameters[edit | edit source]
- akTarget: The ObjectReference, ReferenceAlias or RefCollectionAlias that is having the effect applied.
- akCasterFilter: The filter to use for the caster.
- Default: None
- akEffectFilter: The filter to use for the magic effect
- Default: None
- abMatch: If true, the filter must match the hit - if false, the filter must NOT match the hit (inverted filter)
- Default: true
Return Value[edit | edit source]
None
Examples[edit | edit source]
; We no longer care about the player having effects applied to him
UnregisterForMagicEffectApplyEvent(Game.GetPlayer())
; We no longer care about the player having fire applied to him
UnregisterForMagicEffectApplyEvent(self, akEffectFilter = FireEffect)
Notes[edit | edit source]
- Aliases and quests will automatically unregister for this event when the quest stops. Active magic effects will automatically unregister when they are removed.