diff options
Diffstat (limited to 'npc/007-1/naem.txt')
-rw-r--r-- | npc/007-1/naem.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/007-1/naem.txt b/npc/007-1/naem.txt new file mode 100644 index 000000000..2ad91cc8c --- /dev/null +++ b/npc/007-1/naem.txt @@ -0,0 +1,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; + +} + |