summaryrefslogtreecommitdiff
path: root/npc/024-1/guard.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/024-1/guard.txt')
-rw-r--r--npc/024-1/guard.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/024-1/guard.txt b/npc/024-1/guard.txt
new file mode 100644
index 000000000..b32f51185
--- /dev/null
+++ b/npc/024-1/guard.txt
@@ -0,0 +1,22 @@
+// TMW2 Script
+
+024-1,93,73,0 script Frostia Guard NPC_ELF,{
+ mesn;
+ mesq l("You're not welcome here. Get moving.");
+ end;
+
+
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ setunitdata(.@npcId, UDT_HEADTOP, WarlordHelmet);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, WarlordPlate);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes);
+ setunitdata(.@npcId, UDT_WEAPON, JeansChaps);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 2);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 4);
+
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}
+