- Found in:
- Vanilla
eventOnQuestTimerStart(intaiReason)
Description
Documentation Comment
aiReason values for OnQuestTimer***** are 0=timer expired, 1=stage triggered, 2=script
Event received when the quest timer has started
Parameters
intaiReason
Examples
Auto-Generated Example
Scriptname MyCoolScript extends Quest
event OnQuestTimerStart(int aiReason)
Debug.trace("Event received - OnQuestTimerStart: aiReason = " + aiReason)
endEvent