diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-16 13:29:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-16 13:29:04 -0300 |
commit | f4359749f70a243f75861af1cf6bb1f3c067b91c (patch) | |
tree | c74f349fc5b04850d9ece2c6d0581766d8e2704f | |
parent | c12fc7953e21a7b8adf9a6972999650afa2734fc (diff) | |
download | serverdata-f4359749f70a243f75861af1cf6bb1f3c067b91c.tar.gz serverdata-f4359749f70a243f75861af1cf6bb1f3c067b91c.tar.bz2 serverdata-f4359749f70a243f75861af1cf6bb1f3c067b91c.tar.xz serverdata-f4359749f70a243f75861af1cf6bb1f3c067b91c.zip |
Add Naem's placeholder for Miner Tank Top quest (I lost the original notes)
-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; + +} + |