summaryrefslogblamecommitdiff
path: root/npc/012-2/helena.txt
blob: fe84d93e69ddfaee38bb92069685850f714ce630 (plain) (tree)
























                                                      
// TMW2 Script.
// Author:
//    Jesusalva
// Description:
//    Lena

012-2,47,40,0	script	Helena	NPC_FEMALE,{

    mesn;
    mesq lg("Hello, madam!", "Hello, sir!");
    close;

OnInit:
    .@npcId = getnpcid(0, .name$);
    setunitdata(.@npcId, UDT_HEADTOP, FairyHat);
    setunitdata(.@npcId, UDT_HEADMIDDLE, ForestArmor);
    setunitdata(.@npcId, UDT_HEADBOTTOM, CottonSkirt);
    setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 17);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 7);

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