summaryrefslogblamecommitdiff
path: root/npc/003-1-3/thief.txt
blob: faea050d5877261868e88ee4e06a4b1c1628a7a9 (plain) (tree)





























                                                                                       
// TMW2 Scripts.
// Author:
//  Jesusalva
// Description:
//  Temporary NPC to block path to Halinarzo

003-1-3,45,35,0	script	Thief#temp003	NPC_PLAYER,{

    mesn;
    mesq l("I am from the Thief's Guild of Hurnscald.");
    next;
    mesq l("At the moment no one is being allowed past this point.");
    next;
    mesq l("Call the High Council, if you may. I won't free this path any time soon!");
    close;

OnInit:
    .@npcId = getnpcid(0, .name$);
    setunitdata(.@npcId, UDT_HEADTOP, 1308); // Dress
    setunitdata(.@npcId, UDT_HEADMIDDLE, 2204); // 2214 FIXME
    setunitdata(.@npcId, UDT_HEADBOTTOM, 1800); // Shoes
    setunitdata(.@npcId, UDT_WEAPON, 3501); // We should use a hood instead
    setunitdata(.@npcId, UDT_HAIRSTYLE, 8);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 5);

    .sex = G_MALE;
    .distance = 3;
    end;

}