summaryrefslogtreecommitdiff
path: root/npc/003-1/inac.txt
blob: 38129c45d171442da8ad7865b63dfca3ca53b6af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// TMW2 scripts.
// Author:
//    Saulc

003-1,55,82,0	script	Inac	NPC_PLAYER,{


hello;

OnInit:
    .@npcId = getnpcid(0, "Inac");
    setunitdata(.@npcId, UDT_HEADTOP, 2900);
    setunitdata(.@npcId, UDT_HEADMIDDLE, 1301);
    setunitdata(.@npcId, UDT_HEADBOTTOM, 2207);
    setunitdata(.@npcId, UDT_WEAPON, 1800); // Boots
    setunitdata(.@npcId, UDT_HAIRSTYLE, 7);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 17);

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