diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-23 22:09:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-23 22:10:57 -0300 |
commit | 5946460b3e6da69a54dec8300491381a2acb2df2 (patch) | |
tree | 6223647fb453c410899f7f2f3fe63d380ec67540 /npc/009-5 | |
parent | abae4307e7f1a501c2e76674ccdd133f0e529dcf (diff) | |
download | serverdata-5946460b3e6da69a54dec8300491381a2acb2df2.tar.gz serverdata-5946460b3e6da69a54dec8300491381a2acb2df2.tar.bz2 serverdata-5946460b3e6da69a54dec8300491381a2acb2df2.tar.xz serverdata-5946460b3e6da69a54dec8300491381a2acb2df2.zip |
Move Luanna inside Halinarzo's Church
Diffstat (limited to 'npc/009-5')
-rw-r--r-- | npc/009-5/_import.txt | 4 | ||||
-rw-r--r-- | npc/009-5/_warps.txt | 3 | ||||
-rw-r--r-- | npc/009-5/luanna.txt | 30 |
3 files changed, 37 insertions, 0 deletions
diff --git a/npc/009-5/_import.txt b/npc/009-5/_import.txt new file mode 100644 index 000000000..20d4451b1 --- /dev/null +++ b/npc/009-5/_import.txt @@ -0,0 +1,4 @@ +// Map 009-5: Halinarzo Church +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/009-5/_warps.txt", +"npc/009-5/luanna.txt", diff --git a/npc/009-5/_warps.txt b/npc/009-5/_warps.txt new file mode 100644 index 000000000..ee7350c51 --- /dev/null +++ b/npc/009-5/_warps.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 009-5: Halinarzo Church warps +009-5,33,42,0 warp #009-5_33_42 1,0,009-1,63,39 diff --git a/npc/009-5/luanna.txt b/npc/009-5/luanna.txt new file mode 100644 index 000000000..089062310 --- /dev/null +++ b/npc/009-5/luanna.txt @@ -0,0 +1,30 @@ +// TMW2 Script +// Author: +// Jesusalva, 4144 +// Description: +// Luanna is responsible for marriage. Subject to change stuff later. + +009-5,32,29,0 script Luanna NPC_FEMALE,{ + marriagemain(); + close; + +OnTimer30000: + marriagecheck(); + end; + +OnInit: + .@npcId = getnpcid(0, .name$); + setunitdata(.@npcId, UDT_HEADTOP, NPCEyes); + setunitdata(.@npcId, UDT_HEADMIDDLE, VneckJumper); + setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers); + setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots + setunitdata(.@npcId, UDT_HAIRSTYLE, 10); + setunitdata(.@npcId, UDT_HAIRCOLOR, 5); + + .sex = G_FEMALE; + .distance = 5; + initnpctimer; + + end; + +} |