summaryrefslogblamecommitdiff
path: root/npc/012-6/nurse.txt
blob: a818325d7556bd28afee9626e866212220d18917 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                            
                         


          
                               
                                                           
                                                    
                                                       








                                            
// 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(.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;

}