diff options
-rw-r--r-- | npc/007-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/007-1/naem.txt | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/npc/007-1/_import.txt b/npc/007-1/_import.txt index dfefea367..bbbfd8669 100644 --- a/npc/007-1/_import.txt +++ b/npc/007-1/_import.txt @@ -4,6 +4,7 @@ "npc/007-1/_warps.txt", "npc/007-1/caelum.txt", "npc/007-1/dracoula.txt", +"npc/007-1/naem.txt", "npc/007-1/pylon.txt", "npc/007-1/torches.txt", "npc/007-1/treasure.txt", 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; + +} + |