summaryrefslogtreecommitdiff
path: root/npc/007-1/naem.txt
blob: 2ad91cc8cd34b4e13daf6a16052b1ce299ccdac5 (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
27
28
29
30
// TMW2 Script
// Author:
//      Jesusalva
// Description:
//    Naem is... I'm not sure.

007-1,180,46,2	script	Naem	NPC_PLAYER,0,0,{
    mesn;
    mesq l("My name is Naem and I guard the tunnels in this direction. You shall not pass. Now leave.");
    close;

// TODO: If you walk past him having the requisite, warp
OnTouch:
    end;

OnInit:
    .@npcId = getnpcid(.name$);
    setunitdata(.@npcId, UDT_HEADTOP, MinerHat);
    setunitdata(.@npcId, UDT_HEADMIDDLE, MinerTankTop);
    setunitdata(.@npcId, UDT_HEADBOTTOM, BromenalPants);
    setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 4);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 3);

    .sex = G_MALE;
    .distance = 4;
    end;

}