eventOnStoryPickLock(ObjectReferenceakActor, ObjectReferenceakLock)
Description
Wiki Description
Event called when this quest is started via a pick lock story manager event.
Caveats
CK Wiki - Notes
- This event doesn't fire at all and there are no vanilla quests inside the SM Event Node that use this event.
Parameters
ObjectReferenceakActor
CK Wiki Description
The ObjectReference that picked the lock.
ObjectReferenceakLock
CK Wiki Description
The ObjectReference that was picked.
Examples
Event OnStoryPickLock(ObjectReference akActor, ObjectReference akLock)
Debug.Trace(akActor + " just picked the lock on " + akLock)
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnStoryPickLock(ObjectReference akActor, ObjectReference akLock)
Debug.trace("Event received - OnStoryPickLock: akActor = " + akActor + " akLock = " + akLock)
endEvent