Background for Skyrim SE
Member of the Quest script

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

Event OnStoryActivateActor(Location akLocation, ObjectReference akActor)
  Debug.Trace(akActor + " was activated in " + akLocation + " by the player"
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnStoryActivateActor(Location akLocation, ObjectReference akActor)
    Debug.trace("Event received - OnStoryActivateActor: akLocation = " + akLocation + " akActor = " + akActor)
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.