summaryrefslogtreecommitdiff
path: root/npc/009-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-23 22:09:36 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-23 22:10:57 -0300
commit5946460b3e6da69a54dec8300491381a2acb2df2 (patch)
tree6223647fb453c410899f7f2f3fe63d380ec67540 /npc/009-1
parentabae4307e7f1a501c2e76674ccdd133f0e529dcf (diff)
downloadserverdata-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-1')
-rw-r--r--npc/009-1/_import.txt1
-rw-r--r--npc/009-1/_warps.txt1
-rw-r--r--npc/009-1/luanna.txt30
3 files changed, 1 insertions, 31 deletions
diff --git a/npc/009-1/_import.txt b/npc/009-1/_import.txt
index 15f7c47ae..0d482e907 100644
--- a/npc/009-1/_import.txt
+++ b/npc/009-1/_import.txt
@@ -6,7 +6,6 @@
"npc/009-1/fisherman.txt",
"npc/009-1/foxhound.txt",
"npc/009-1/guards.txt",
-"npc/009-1/luanna.txt",
"npc/009-1/lynnthetraveler.txt",
"npc/009-1/mapflags.txt",
"npc/009-1/soul-menhir.txt",
diff --git a/npc/009-1/_warps.txt b/npc/009-1/_warps.txt
index 13dbb0b1f..09a9baf36 100644
--- a/npc/009-1/_warps.txt
+++ b/npc/009-1/_warps.txt
@@ -6,3 +6,4 @@
009-1,73,63,0 warp #009-1_73_63 0,0,009-2,28,65
009-1,86,34,0 warp #009-1_86_34 0,0,009-3,44,56
009-1,33,62,0 warp #009-1_33_62 0,0,009-4,48,53
+009-1,64,38,0 warp #009-1_64_38 1,0,009-5,32,41
diff --git a/npc/009-1/luanna.txt b/npc/009-1/luanna.txt
deleted file mode 100644
index b1cdb5024..000000000
--- a/npc/009-1/luanna.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-// TMW2 Script
-// Author:
-// Jesusalva, 4144
-// Description:
-// Luanna is responsible for marriage. Temporary location. Subject to change stuff later.
-
-009-1,107,32,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;
-
-}