OnStoryHello - Quest
Jump to navigation
Jump to search
Member of: Quest Script
Event called when this quest is started via a hello story manager event.
Syntax[edit | edit source]
Event OnStoryHello(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)
Parameters[edit | edit source]
- akLocation: The Location where the hello happened.
- akActor1: The first ObjectReference in the hello.
- akActor2: The second ObjectReference in the hello.
Examples[edit | edit source]
Event OnStoryHello(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)
Debug.Trace(akActor1 + " said hello to " + akActor2)
endEvent