Difference between revisions of "OnMagicEffectApply - ObjectReference"
Jump to navigation
Jump to search
imported>Jlundin |
imported>Terra Nova2 m (False alarm.) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 12: | Line 12: | ||
== Parameters == | == Parameters == | ||
* | *akCaster: The [[ObjectReference Script|ObjectReference]] that is responsible for the spell. | ||
*akEffect: The [[MagicEffect Script|MagicEffect]] that is attempting to be applied. | *akEffect: The [[MagicEffect Script|MagicEffect]] that is attempting to be applied. | ||
Latest revision as of 14:15, 27 February 2016
Member of: ObjectReference Script
Event called when a magic effect is about to be applied to the object reference.
Syntax[edit | edit source]
Event OnMagicEffectApply(ObjectReference akCaster, MagicEffect akEffect)
Parameters[edit | edit source]
- akCaster: The ObjectReference that is responsible for the spell.
- akEffect: The MagicEffect that is attempting to be applied.
Examples[edit | edit source]
Event OnMagicEffectApply(ObjectReference akCaster, MagicEffect akEffect)
Debug.Trace(akCaster + " applied the " + akEffect + " on us")
EndEvent