- Found in:
- Vanilla
eventOnAction(intauiActionID, ReferenceAliasakAlias)
Description
Wiki Description
Event called when a scene timer action is run.
Documentation Comment
Event received when a scene action is executed on an alias (in parallel with the fragment)
Caveats
CK Wiki - Notes
- This event runs in parallel with the scene timer action fragment.
- The scene action will not be considered finished until the fragment and events on all scripts (on the quest or remotely registered) have finished running.
Parameters
intauiActionID
CK Wiki Description
The action ID being run
Examples
Event OnAction(int auiActionID, ReferenceAlias akAlias)
Debug.Trace("Scene timer action " + auiActionID + " is running on " + akAlias)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Scene
event OnAction(int auiActionID, ReferenceAlias akAlias)
Debug.trace("Event received - OnAction: auiActionID = " + auiActionID + " akAlias = " + akAlias)
endEvent