Osiris/API/DialogStarted: Difference between revisions

From Divinity Engine Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 8: Line 8:
===== Notes =====
===== Notes =====
* Automated dialogs with throw an [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]] event instead.
* Automated dialogs with 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
* If the attempt to start an interactive dialog fails, a [[Osiris/API/DialogRequestFailed|DialogRequestFailed]] event will be thrown instead.
===== See Also =====
===== See Also =====
* [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]]
* [[Osiris/API/AutomatedDialogStarted|AutomatedDialogStarted]]

Revision as of 06:29, 19 September 2018

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.
Notes
See Also