Difference between revisions of "Osiris/API/DialogStarted"
From Divinity Engine Wiki
(Document DialogStarted) |
m (corrected DialogRequestFailed event name and added to See Also section) |
||
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/ | + | * 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]] | ||
* [[Osiris/API/DialogEnded|DialogEnded]] | * [[Osiris/API/DialogEnded|DialogEnded]] | ||
+ | * [[Osiris/API/DialogRequestFailed|DialogRequestFailed]] | ||
* Helper [[Osiris/Shared/DB_DialogNPCs|DB_DialogNPCs]] | * Helper [[Osiris/Shared/DB_DialogNPCs|DB_DialogNPCs]] | ||
* Helper [[Osiris/Shared/DB_DialogPlayers|DB_DialogPlayers]] | * Helper [[Osiris/Shared/DB_DialogPlayers|DB_DialogPlayers]] | ||
[[Category:Osiris Events]] | [[Category:Osiris Events]] |
Revision as of 21:33, 14 September 2017
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
- Automated dialogs with throw an AutomatedDialogStarted event instead.
- If the attempt to start an interactive dialog fails, a DialogRequestFailed event will be thrown instead