summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-20 13:49:36 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-20 13:49:36 -0300
commit8b46c15ec2d0a147f3af6945e2803c9ccc68ce31 (patch)
treeb6f14bac83e77c6dcc41faf31b385d65485b9ca6
parent123796ea82f196fe87ddb51099f5bbf9a7ecbeb8 (diff)
downloadserverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.tar.gz
serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.tar.bz2
serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.tar.xz
serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.zip
Make Maps, add Helena template, gtg
-rw-r--r--maps/re/007-1.mcachebin2086 -> 2067 bytes
-rw-r--r--npc/012-2/_import.txt1
-rw-r--r--npc/012-2/helena.txt25
3 files changed, 26 insertions, 0 deletions
diff --git a/maps/re/007-1.mcache b/maps/re/007-1.mcache
index b70155555..63c023a77 100644
--- a/maps/re/007-1.mcache
+++ b/maps/re/007-1.mcache
Binary files differ
diff --git a/npc/012-2/_import.txt b/npc/012-2/_import.txt
index e1584dc25..84133ceed 100644
--- a/npc/012-2/_import.txt
+++ b/npc/012-2/_import.txt
@@ -1,3 +1,4 @@
// Map 012-2: Hurnscald Inn
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/012-2/_warps.txt",
+"npc/012-2/helena.txt",
diff --git a/npc/012-2/helena.txt b/npc/012-2/helena.txt
new file mode 100644
index 000000000..fe84d93e6
--- /dev/null
+++ b/npc/012-2/helena.txt
@@ -0,0 +1,25 @@
+// TMW2 Script.
+// Author:
+// Jesusalva
+// Description:
+// Lena
+
+012-2,47,40,0 script Helena NPC_FEMALE,{
+
+ mesn;
+ mesq lg("Hello, madam!", "Hello, sir!");
+ close;
+
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ setunitdata(.@npcId, UDT_HEADTOP, FairyHat);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, ForestArmor);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, CottonSkirt);
+ setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 17);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 7);
+
+ .sex = G_FEMALE;
+ .distance = 5;
+ end;
+}