Project

General

Profile

EQ2_onQuestUpdate (Event)

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

  1. string ID
  2. string Name
  3. string CurrentZone
  4. string Category
  5. string Description
  6. 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
 }