OnEnd - Package

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Package Script

Event called when the package is ends normally (but not if it is preempted).

Syntax[edit | edit source]

Event OnEnd(Actor akActor)

Parameters[edit | edit source]

  • akActor: The actor the package was running on

Examples[edit | edit source]

Event OnEnd(Actor akActor)
  Debug.Trace("This package finished on " + akActor)
endEvent

Notes[edit | edit source]

  • This event runs in parallel with the end fragment.

See Also[edit | edit source]