// TMW2 scripts.
// Author:
//    Saulc
// Description:
//    Ched is from a quest.


003-1,62,48,0	script	Ched	NPC_PLAYER,{

    hello;


OnInit:
    .@npcId = getnpcid(0, "Ched");
    setunitdata(.@npcId, UDT_HEADTOP, 2929);
    setunitdata(.@npcId, UDT_HEADMIDDLE, 1316);
    setunitdata(.@npcId, UDT_HEADBOTTOM, 2204);
    setunitdata(.@npcId, UDT_WEAPON, 1803); // Boots
    setunitdata(.@npcId, UDT_HAIRSTYLE, 7);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 17);

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