summaryrefslogtreecommitdiff
path: root/npc/009-1/Luanna.txt
blob: 94e6d5b706ba8cd0691643120a5cf61cbc9f41ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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;

}