Osiris/API/QuestAdd: Difference between revisions

From Divinity Engine Wiki
Jump to navigation Jump to search
(Redirect to Osiris/Shared/DB_QuestDef_Sate)
 
No edit summary
Line 1: Line 1:
#REDIRECT [[Osiris/Shared/DB_QuestDef_Sate]]
===== Full Definition(s) =====
* call '''QuestAdd'''(''(CHARACTERGUID)'''''_Character''',''(STRING)'''''_Quest''')
===== Description =====
Makes the quest '''_Quest''' active for '''_Character'''. This means that from now on, updates added through [[Osiris/API/QuestUpdate|QuestUpdate]] will appear in this character's journal.
===== Notes =====
* Preferably do not use this API directly, but use the helpers related to [[Osiris/Shared/DB_QuestDef_Sate|DB_QuestDef_State]] from the Shared mod instead.
===== See Also =====
* [[Osiris/API/QuestUpdate|QuestUpdate]]
* [[Osiris/API/QuestClose|QuestClose]]
* Helper [[Osiris/Shared/DB_QuestDef_Sate|DB_QuestDef_State]]
[[Category:Osiris Calls]]

Revision as of 20:09, 9 August 2017

Full Definition(s)
  • call QuestAdd((CHARACTERGUID)_Character,(STRING)_Quest)
Description

Makes the quest _Quest active for _Character. This means that from now on, updates added through QuestUpdate will appear in this character's journal.

Notes
  • Preferably do not use this API directly, but use the helpers related to DB_QuestDef_State from the Shared mod instead.
See Also