Background for Skyrim SE
Member of the Quest script

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

  1. ObjectReferenceakActor

    CK Wiki Description

    The ObjectReference that picked the lock.

  2. 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)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryPickLock(ObjectReference akActor, ObjectReference akLock)
    Debug.trace("Event received - OnStoryPickLock: akActor = " + akActor + " akLock = " + akLock)
endEvent

Related Pages


Additional References

View this event’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.