Background for Skyrim SE
Member of the Quest script
eventOnStoryHello(LocationakLocation, ObjectReferenceakActor1, ObjectReferenceakActor2)

Description

Wiki Description

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


Parameters

  1. LocationakLocation

    CK Wiki Description

    The Location where the hello happened.

  2. ObjectReferenceakActor1

    CK Wiki Description

    The first ObjectReference in the hello.

  3. ObjectReferenceakActor2

    CK Wiki Description

    The second ObjectReference in the hello.


Examples

Event OnStoryHello(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)
  Debug.Trace(akActor1 + " said hello to " + akActor2)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

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