diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-18 23:40:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-18 23:40:10 -0300 |
commit | b16a4d29178af2dfbd09867f2d6f21ab81de60f0 (patch) | |
tree | 9940886f480b5d2977afe006d73871fd8af720d7 /npc/003-0/recepcionist.txt | |
parent | 28518fbff7d087cb2376a87594e122f51ffc3129 (diff) | |
download | serverdata-b16a4d29178af2dfbd09867f2d6f21ab81de60f0.tar.gz serverdata-b16a4d29178af2dfbd09867f2d6f21ab81de60f0.tar.bz2 serverdata-b16a4d29178af2dfbd09867f2d6f21ab81de60f0.tar.xz serverdata-b16a4d29178af2dfbd09867f2d6f21ab81de60f0.zip |
Add a recepcionist to 003-0 explaining important details
Diffstat (limited to 'npc/003-0/recepcionist.txt')
-rw-r--r-- | npc/003-0/recepcionist.txt | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/npc/003-0/recepcionist.txt b/npc/003-0/recepcionist.txt new file mode 100644 index 000000000..8476af6db --- /dev/null +++ b/npc/003-0/recepcionist.txt @@ -0,0 +1,48 @@ +// TMW2 Scripts. +// Author: +// Jesusalva +// Description: +// Magic School recepcionist + +003-0,47,44,4 script Recepcionist#003-0 NPC_FEMALE,{ + mesn; + mesq l("Hello, and welcome to the Magic School of Tulimshar."); + next; + mesn; + mesq l("Unfortunately, we're shutting down. This building is too old."); + next; + mesn; + mesq l("I hope our new campus get built soon. It'll be much better than here."); + close; + +OnTimer1000: + domovestep; + +OnInit: + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADTOP, FancyHat); + setunitdata(.@npcId, UDT_HEADMIDDLE, CreasedShirt); + //setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes); + setunitdata(.@npcId, UDT_WEAPON, JeansShorts); + setunitdata(.@npcId, UDT_HAIRSTYLE, any(8,11,20)); + setunitdata(.@npcId, UDT_HAIRCOLOR, 5); + + // Small movement + initpath "move", 47, 44, + "dir", UP, 0, + "wait", 7, 0, + "move", 48, 45, + "dir", DOWN, 0, + "wait", 7, 0, + "move", 49, 44, + "dir", UP, 0, + "wait", 7, 0, + "move", 47, 44; + initialmove; + initnpctimer; + + .sex=G_FEMALE; + .distance=5; + end; +} + |