blob: 2ad91cc8cd34b4e13daf6a16052b1ce299ccdac5 (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Naem is... I'm not sure.
007-1,180,46,2 script Naem NPC_PLAYER,0,0,{
mesn;
mesq l("My name is Naem and I guard the tunnels in this direction. You shall not pass. Now leave.");
close;
// TODO: If you walk past him having the requisite, warp
OnTouch:
end;
OnInit:
.@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, MinerHat);
setunitdata(.@npcId, UDT_HEADMIDDLE, MinerTankTop);
setunitdata(.@npcId, UDT_HEADBOTTOM, BromenalPants);
setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots);
setunitdata(.@npcId, UDT_HAIRSTYLE, 4);
setunitdata(.@npcId, UDT_HAIRCOLOR, 3);
.sex = G_MALE;
.distance = 4;
end;
}
|