summaryrefslogblamecommitdiff
path: root/npc/024-1/guard.txt
blob: b32f51185bcec063501fdb3373a785b1981c89a9 (plain) (tree)





















                                                       
// TMW2 Script

024-1,93,73,0	script	Frostia Guard	NPC_ELF,{
    mesn;
    mesq l("You're not welcome here. Get moving.");
    end;


OnInit:
    .@npcId = getnpcid(0, .name$);
    setunitdata(.@npcId, UDT_HEADTOP, WarlordHelmet);
    setunitdata(.@npcId, UDT_HEADMIDDLE, WarlordPlate);
    setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes);
    setunitdata(.@npcId, UDT_WEAPON, JeansChaps);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 2);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 4);

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