summaryrefslogtreecommitdiff
path: root/world/map/npc/annuals/fathertime.txt
blob: bedf23f6f77945c31d736690975c120ed38dde0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Annual Timer
// One timer to check to enable all holiday events

botcheck.gat,26,28,0|script|#HolidayConfig|-1,
{
    end;

OnInit:
    goto L_StartTimer;

L_StartTimer:
    setnpctimer 0;
    initnpctimer;
    end;

OnTimer20000:
    setnpctimer 0;
    cmdothernpc "#XmasConfig", "RestartQuest";
    initnpctimer;
    end;
}