summaryrefslogtreecommitdiff
path: root/npc/003-1/ched.txt
blob: 21fd30590c0a6461f9a65b73a46e9241345e032a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// TMW2 scripts.
// Author:
//    Saulc
// Description:
//    Ched is from a quest.


003-1,40,49,0	script	Ched	NPC_PLAYER,{

    hello;


OnInit:
    .@npcId = getnpcid(0, "Ched");
    setunitdata(.@npcId, UDT_HEADTOP, 2929);
    setunitdata(.@npcId, UDT_HEADMIDDLE, 1314);
    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;
}