blob: 9ac8369674d4e3400fa3fafea17abf49257789b3 (
plain) (
tree)
|
|
// TMW2 scripts.
// Author:
// TMW-BR
// Jesusalva
// Description:
// AFK Cap quest (Lv 47)
024-7,40,24,0 script AF King NPC_PLAYER,{
if (BaseLevel < 47) {
npctalkonce l("*AFK: I am Away From Keyboard*");
end;
}
closedialog;
goodbye;
close;
OnInit:
.@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, AFKCap);
setunitdata(.@npcId, UDT_HEADMIDDLE, SilkRobe);
setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots);
setunitdata(.@npcId, UDT_HAIRSTYLE, 26);
setunitdata(.@npcId, UDT_HAIRCOLOR, 0);
npcsit;
.sex = G_MALE;
.distance = 4;
end;
}
|