Difference between revisions of "Osiris/API/DialogStarted"

From Divinity Engine Wiki
Jump to: navigation, search
m
m (Notes)
 
Line 7: Line 7:
 
* '''_InstanceID''': Unique identifier for this interactive dialog instance.
 
* '''_InstanceID''': Unique identifier for this interactive dialog instance.
 
===== Notes =====
 
===== Notes =====
* Automated dialogs with throw an [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]] event instead.
+
* Automated dialogs will throw an [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]] event instead.
 
* If the attempt to start an interactive dialog fails, a [[Osiris/API/DialogRequestFailed|DialogRequestFailed]] event will be thrown instead (see that page for details).
 
* If the attempt to start an interactive dialog fails, a [[Osiris/API/DialogRequestFailed|DialogRequestFailed]] event will be thrown instead (see that page for details).
 +
 
===== See Also =====
 
===== See Also =====
 
* [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]]
 
* [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]]

Latest revision as of 11:06, 6 October 2019

Full Definition(s)
  • event DialogStarted((STRING)_Dialog, (INTEGER)_InstanceID)
Description

Thrown once an interactive dialog has started.

Parameters
  • _Dialog: The name of the dialog.
  • _InstanceID: Unique identifier for this interactive dialog instance.
Notes
See Also