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

Description

Wiki Description

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

Documentation Comment

Event called when the package ends (in parallel with the fragment)


Caveats

CK Wiki - Notes

  • This event runs in parallel with the end fragment.

Parameters

ActorakActor

CK Wiki Description

The actor the package was running on


Examples

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

Auto-Generated Example

Scriptname MyCoolScript extends Package

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