diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-22 11:21:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-22 11:21:18 -0300 |
commit | 87786dbe8d55e8c9f2ae1d08ed161c5f01856bbf (patch) | |
tree | 95b6b7c678a2c0aff57e19b438e3c118d035979b /npc/009-1/Luanna.txt | |
parent | 656644998d972da5ac68765e45f1c8138ce5f174 (diff) | |
download | serverdata-87786dbe8d55e8c9f2ae1d08ed161c5f01856bbf.tar.gz serverdata-87786dbe8d55e8c9f2ae1d08ed161c5f01856bbf.tar.bz2 serverdata-87786dbe8d55e8c9f2ae1d08ed161c5f01856bbf.tar.xz serverdata-87786dbe8d55e8c9f2ae1d08ed161c5f01856bbf.zip |
Fix a case, add an empty NPC template
Diffstat (limited to 'npc/009-1/Luanna.txt')
-rw-r--r-- | npc/009-1/Luanna.txt | 30 |
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 94e6d5b70..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_PLAYER_F,{ - 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; - -} |