Background for Fallout 4
Member of the Package script
eventOnStart(ActorakActor)

Description

Wiki Description

Event called when the package starts.

Documentation Comment

Event called when the package first starts (in parallel with the fragment)


Caveats

CK Wiki - Notes

  • This event runs in parallel with the start fragment.

Parameters

ActorakActor

CK Wiki Description

The actor the package is running on


Examples

Event OnStart(Actor akActor)
  Debug.Trace("This package started on " + akActor)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Package

event OnStart(Actor akActor)
    Debug.trace("Event received - OnStart: akActor = " + akActor)
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.