OnStoryActivateActor - Quest

From the CreationKit Wiki
Revision as of 07:05, 29 January 2013 by imported>JustinOther (Reverted edits by Black RL (talk) to last revision by Henning)
Jump to navigation Jump to search

Member of: Quest Script

Event called when this quest is started via an activate actor story manager event.

Syntax

Event OnStoryActivateActor(Location akLocation, ObjectReference akActor)

Parameters

  • akLocation: The Lcation that the actor was activated at.
  • akActor: The Actor that was activated.

Examples

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

See Also