Difference between revisions of "OnStoryDialogue - Quest"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Svarr
m (Added link to corresponding SM Event)
imported>Svarr
m (→‎Note: Replaced note with a line from here and put it in bullets (for conformity with other pages))
Line 25: Line 25:


== Note ==
== Note ==
This SM event does not fire when the player engages in dialogue with another actor; it is only between two NPCs.
*This event is called when actors (assuming the "Random Conversations" flag on their currently running package is set) find a valid conversation target.


== See Also ==
== See Also ==
*[[Quest Script]]
*[[Quest Script]]

Revision as of 16:59, 29 June 2016

Member of: Quest Script

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

Syntax

Event OnStoryDialogue(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)

Parameters

Examples

Event OnStoryDialogue(Location akLocation, ObjectReference akActor1, ObjectReference akActor2)
  Debug.Trace(akActor1 + " is in dialogue with " + akActor2)
endEvent

Note

  • This event is called when actors (assuming the "Random Conversations" flag on their currently running package is set) find a valid conversation target.

See Also