Background for Fallout 4
Member of the ActiveMagicEffect script
eventOnEffectStart(ActorakTarget, ActorakCaster)

Description

Wiki Description

Event called when the active magic effect has just started on the specified target.

Documentation Comment

Event received when this effect is first started (OnInit may not have been run yet!)


Parameters

ActorakTarget

CK Wiki Description

The Actor this effect was applied to.

ActorakCaster

CK Wiki Description

The Actor that cast the spell this effect was from.


Examples

Event OnEffectStart(Actor akTarget, Actor akCaster)
  Debug.Trace("Magic effect was started on " + akTarget)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends ActiveMagicEffect

event OnEffectStart(Actor akTarget, Actor akCaster)
    Debug.trace("Event received - OnEffectStart: akTarget = " + akTarget + " akCaster = " + akCaster)
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.