summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-07-18 23:40:25 -0300
committerJesusaves <cpntb1@ymail.com>2019-07-18 23:40:25 -0300
commit436e290ae17f7bd8f14f497f920e2c07a9098d18 (patch)
tree0a931c1e68b1001737d925698de8fe06db411bce
parent6daa762945a117a53a9a6f9cf989eb3c2190a9f1 (diff)
parentb16a4d29178af2dfbd09867f2d6f21ab81de60f0 (diff)
downloadserverdata-436e290ae17f7bd8f14f497f920e2c07a9098d18.tar.gz
serverdata-436e290ae17f7bd8f14f497f920e2c07a9098d18.tar.bz2
serverdata-436e290ae17f7bd8f14f497f920e2c07a9098d18.tar.xz
serverdata-436e290ae17f7bd8f14f497f920e2c07a9098d18.zip
Merge branch 'master' into testserver
-rw-r--r--npc/000-0/mapflags.txt1
-rw-r--r--npc/003-0/_import.txt1
-rw-r--r--npc/003-0/recepcionist.txt48
3 files changed, 50 insertions, 0 deletions
diff --git a/npc/000-0/mapflags.txt b/npc/000-0/mapflags.txt
index e956447ee..9b55f66b5 100644
--- a/npc/000-0/mapflags.txt
+++ b/npc/000-0/mapflags.txt
@@ -1 +1,2 @@
000-0 mapflag invisible
+000-1 mapflag invisible
diff --git a/npc/003-0/_import.txt b/npc/003-0/_import.txt
index 7f54a7b79..1601700b1 100644
--- a/npc/003-0/_import.txt
+++ b/npc/003-0/_import.txt
@@ -7,6 +7,7 @@
"npc/003-0/mages.txt",
"npc/003-0/paladin.txt",
"npc/003-0/priest.txt",
+"npc/003-0/recepcionist.txt",
"npc/003-0/sage.txt",
"npc/003-0/tanker.txt",
"npc/003-0/warriors.txt",
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;
+}
+