EQ2_onQuestUpdate (Event)¶
- Table of contents
- EQ2_onQuestUpdate (Event)
- Description
- Arguments
- Usage
Description¶
The EQ2_onQuestUpdate event will fire whenever you receive a quest update, and will call any attached atoms.
- Note: See forums for example on how to use "QuestUpdates."
- This event is the same information currently sent via triggers as explained here
Arguments¶
- string ID
- string Name
- string CurrentZone
- string Category
- string Description
- array ProgressText (Note: In scripts, "..." is often used in place of the "array" keyword.)
Usage¶
Event
[EQ2_onQuestUpdate]:AttachAtom[MyAtom
]
...
atom MyAtom(string ID, string Name, string CurrentZone, string Category, string Description, ... ProgressText)
{
;do stuff
}