summaryrefslogtreecommitdiff
path: root/npc/009-1/luanna.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/009-1/luanna.txt')
-rw-r--r--npc/009-1/luanna.txt30
1 files changed, 0 insertions, 30 deletions
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;
-
-}