diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-20 13:49:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-20 13:49:36 -0300 |
commit | 8b46c15ec2d0a147f3af6945e2803c9ccc68ce31 (patch) | |
tree | b6f14bac83e77c6dcc41faf31b385d65485b9ca6 /npc/012-2 | |
parent | 123796ea82f196fe87ddb51099f5bbf9a7ecbeb8 (diff) | |
download | serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.tar.gz serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.tar.bz2 serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.tar.xz serverdata-8b46c15ec2d0a147f3af6945e2803c9ccc68ce31.zip |
Make Maps, add Helena template, gtg
Diffstat (limited to 'npc/012-2')
-rw-r--r-- | npc/012-2/_import.txt | 1 | ||||
-rw-r--r-- | npc/012-2/helena.txt | 25 |
2 files changed, 26 insertions, 0 deletions
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; +} |