diff options
Diffstat (limited to 'npc/017-1')
-rw-r--r-- | npc/017-1/misc.txt | 2 | ||||
-rw-r--r-- | npc/017-1/paxel.txt | 2 | ||||
-rw-r--r-- | npc/017-1/shops.txt | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/npc/017-1/misc.txt b/npc/017-1/misc.txt index 0cd181b7c..903f74378 100644 --- a/npc/017-1/misc.txt +++ b/npc/017-1/misc.txt @@ -136,7 +136,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); diff --git a/npc/017-1/paxel.txt b/npc/017-1/paxel.txt index 93bd5790b..b6dda6b6f 100644 --- a/npc/017-1/paxel.txt +++ b/npc/017-1/paxel.txt @@ -170,7 +170,7 @@ L_Spring: close; OnInit: - .@npcId = getnpcid(0, .name$); + .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, PrsmHelmet); setunitdata(.@npcId, UDT_HEADMIDDLE, WarlordPlate); setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes); diff --git a/npc/017-1/shops.txt b/npc/017-1/shops.txt index 8d8e5c017..ec30f6422 100644 --- a/npc/017-1/shops.txt +++ b/npc/017-1/shops.txt @@ -9,7 +9,7 @@ close; OnInit: - .@npcId = getnpcid(0, .name$); + .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); setunitdata(.@npcId, UDT_HEADMIDDLE, any(ShortTankTop, CandorShirt, Chainmail)); setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); @@ -40,7 +40,7 @@ OnClock0112: close; OnInit: - .@npcId = getnpcid(0, .name$); + .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); setunitdata(.@npcId, UDT_HEADMIDDLE, any(ShortTankTop, CandorShirt, Chainmail)); setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); |