OnStageSet - Quest

Member of: Quest Script

Event called when a quest stage is set.

SyntaxEdit

Event OnStageSet(int auiStageID, int auiItemID)

ParametersEdit

  • auiStageID: The stage that was set
  • auiItemID: The stage item that was set

ExamplesEdit

Event OnStageSet(int auiStageID, int auiItemID)
  Debug.Trace("This quest is running stage " + auiStageID + " item " + auiItemID)
endEvent

NotesEdit

  • This event runs in parallel with the quest stage fragment.
  • The quest stage will not be considered finished until the fragment and events on all scripts (on the quest or remotely registered) have finished running.

See AlsoEdit