eventOnStoryHello(LocationakLocation, ObjectReferenceakActor1, ObjectReferenceakActor2)
Description
Wiki Description
Event called when this quest is started via a hello story manager event.
Parameters
LocationakLocation
CK Wiki Description
The Location where the hello happened.
ObjectReferenceakActor1
CK Wiki Description
The first ObjectReference in the hello.
ObjectReferenceakActor2
CK Wiki Description
The second ObjectReference in the hello.
Examples
Event OnStoryHello(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)
Debug.Trace(akActor1 + " said hello to " + akActor2)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryHello(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)
Debug.trace("Event received - OnStoryHello: akLocation = " + akLocation + " akActor1 = " + akActor1 + " akActor2 = " + akActor2)
endEvent