summaryrefslogtreecommitdiff
path: root/npc/012-6/nurse.txt
blob: 607ae2dbfbb258640e4c9036f092308101cbcedd (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
// TMW-2 Script
// Author:
//    Jesusalva
//    Crazyfefe

012-6,56,67,6	script	Hurnscald's Nurse	NPC_FEMALE,{
    Nurse(.name$, 10, 6);
    close;

OnInit:
    .@npcId = getnpcid(0, .name$);
    //setunitdata(.@npcId, UDT_HEADTOP, BrimmedFeatherHat);
    setunitdata(.@npcId, UDT_HEADMIDDLE, MiniSkirt);
    setunitdata(.@npcId, UDT_HEADBOTTOM, ShortTankTop);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 12);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 16);

    .sex = G_FEMALE;
    .distance = 5;
    end;

}