summaryrefslogtreecommitdiff
path: root/npc/001-2-34/doors.txt
blob: f2182414c1626468a9d16053be7bb90f3af2083a (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
// Evol scripts.
// Author:
//    Reid
// Description:
//    Doors NPCs.

001-2-34,23,29,0	script	ToTrainingRoom#001-2-34	NPC_HIDDEN,0,0,{

OnTouch:
    if (mobcount("001-2-36.gat","all") > 0)
    {
        narrator
        l("You hear some sound behind the door."),
        l("Somebody is probably training, better wait for him to finish.");
    }
    else
    {
        warp "001-2-36", 36, 29;
    }

    closedialog;
    close;
}