eventOnStoryActivateActor(LocationakLocation, ObjectReferenceakActor)
Description
Wiki Description
Event called when this quest is started via an activate actor story manager event.
Parameters
LocationakLocation
CK Wiki Description
The Location that the actor was activated at.
ObjectReferenceakActor
CK Wiki Description
The Actor that was activated.
Examples
No human-generated examples found for this event.
Auto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryActivateActor(Location akLocation, ObjectReference akActor)
Debug.trace("Event received - OnStoryActivateActor: akLocation = " + akLocation + " akActor = " + akActor)
endEvent