summaryrefslogtreecommitdiff
path: root/npc/009-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-14 02:34:47 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-14 02:34:47 -0200
commiteb1c2abd3d093f0c293568dfbcbbf0d8c4caa12f (patch)
treebb92c5bf6259d66385d5c357d107eb027d80375e /npc/009-1
parenta36d6b759f36636fa4d68f2ed1c4630feb8f3673 (diff)
downloadserverdata-eb1c2abd3d093f0c293568dfbcbbf0d8c4caa12f.tar.gz
serverdata-eb1c2abd3d093f0c293568dfbcbbf0d8c4caa12f.tar.bz2
serverdata-eb1c2abd3d093f0c293568dfbcbbf0d8c4caa12f.tar.xz
serverdata-eb1c2abd3d093f0c293568dfbcbbf0d8c4caa12f.zip
New Hercules Syntax for getnpcid().
sed -i 's/getnpcid(0, /getnpcid(/g' */*.txt
Diffstat (limited to 'npc/009-1')
-rw-r--r--npc/009-1/charles.txt2
-rw-r--r--npc/009-1/foxhound.txt2
-rw-r--r--npc/009-1/guards.txt2
-rw-r--r--npc/009-1/lynnthetraveler.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/npc/009-1/charles.txt b/npc/009-1/charles.txt
index 60a7ef47f..c49b913ee 100644
--- a/npc/009-1/charles.txt
+++ b/npc/009-1/charles.txt
@@ -183,7 +183,7 @@ L_Close:
close;
OnInit:
- .@npcId = getnpcid(0, .name$);
+ .@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, BurglarMask);
setunitdata(.@npcId, UDT_HEADMIDDLE, Chainmail);
setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
diff --git a/npc/009-1/foxhound.txt b/npc/009-1/foxhound.txt
index f6386c472..c56261b66 100644
--- a/npc/009-1/foxhound.txt
+++ b/npc/009-1/foxhound.txt
@@ -179,7 +179,7 @@ L_Close:
close;
OnInit:
- //.@npcId = getnpcid(0, .name$);
+ //.@npcId = getnpcid(.name$);
//setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
//setunitdata(.@npcId, UDT_HEADMIDDLE, VneckJumper);
//setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
diff --git a/npc/009-1/guards.txt b/npc/009-1/guards.txt
index e0aa43dbd..fbf846159 100644
--- a/npc/009-1/guards.txt
+++ b/npc/009-1/guards.txt
@@ -196,7 +196,7 @@ OnInit:
// Check items.xml for info about this.
// NOTE: Why Dausen item list is on Philip...?
- .@npcId = getnpcid(0, "Lieutenant Jacob");
+ .@npcId = getnpcid("Lieutenant Jacob");
setunitdata(.@npcId, UDT_HEADTOP, Bull);
setunitdata(.@npcId, UDT_HEADMIDDLE, LegionTrainingShirt);
setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
diff --git a/npc/009-1/lynnthetraveler.txt b/npc/009-1/lynnthetraveler.txt
index 91cd3758f..02d47c8b7 100644
--- a/npc/009-1/lynnthetraveler.txt
+++ b/npc/009-1/lynnthetraveler.txt
@@ -76,7 +76,7 @@ L_Close:
close;
OnInit:
- .@npcId = getnpcid(0, .name$);
+ .@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
setunitdata(.@npcId, UDT_HEADMIDDLE, UglyChristmasSweater);
setunitdata(.@npcId, UDT_HEADBOTTOM, JeansShorts);