summaryrefslogtreecommitdiff
path: root/npc/003-0/mainquest.txt
blob: f392732e00b73ed2e00fe1a34f82d64eb005230c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// TMW2 scripts.
// Authors:
//    Jesusalva
// Description:
//    Main Quest

003-0,49,35,0	script	#MQ25Trigger	NPC_HIDDEN,3,0,{
    end;

OnTouch:
    .@m$=getmap();
    .@n$=instance_npcname(.name$);
    .@ni=is_night();
    dispbottom col(l("SCRIPT ERROR (%s/%s)", .@m$, .@n$), 1);
    end;

OnInit:
    disablenpc .name$;
    end;

OnInstanceInit:
    if (is_night())
        debugmes "ERROR creating professor at 49, 24";
    end;
}