interface IQuestEvents {
    complete: (() => void);
    start: (() => void);
    task:check: ((task: ICheckTask) => void);
    task:complete: ((task: ITask) => void);
    task:progressUpdate: ((task: IProgressBarTask) => void);
    update: (() => void);
}

Properties

complete: (() => void)

Triggered when the quest is completed.

start: (() => void)

Triggered when the quest is started.

task:check: ((task: ICheckTask) => void)

Triggered when a CheckTask of the quest is completed.

task:complete: ((task: ITask) => void)

Triggered when a task of the quest is completed.

task:progressUpdate: ((task: IProgressBarTask) => void)

Triggered when a ProgressBar of the quest is updated.

update: (() => void)

Triggered when the quest is updated.