OnStoryChangeLocation - Quest

Member of: Quest Script

Event called when this quest is started via a change location story manager event.

SyntaxEdit

Event OnStoryChangeLocation(ObjectReference akActor, Location akOldLocation, Location akNewLocation)

ParametersEdit

  • akActor: The ObjectReference that changed locations.
  • akOldLocation: The Location that the object left.
  • akNewLocation: The Location that the object arrived at.

ExamplesEdit

Event OnStoryChangeLocation(ObjectReference akActor, Location akOldLocation, Location akNewLocation)
  Debug.Trace(akActor + " moved from " + akOldLocation + " to " + akNewLocation)
endEvent

See AlsoEdit