blob: f06fd07dad4f4b042ad7c1b131535ae57d11e076 (
plain) (
tree)
|
|
// TMW2 script.
// Author:
// Saulc
// Jesusalva
// Description:
// Luca and Colin assigns player a class. This may end up contradicting races,
// so expect core changes!
003-0-1,58,29,0 script Colin NPC_PLAYER,{
mesn;
mesq l("I am the Wizard Mages master.");
close;
OnInit:
.@npcId = getnpcid(0, .name$);
setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
setunitdata(.@npcId, UDT_HEADMIDDLE, ForestArmor);
setunitdata(.@npcId, UDT_HEADBOTTOM, JeansShorts);
setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots);
setunitdata(.@npcId, UDT_HAIRSTYLE, 14);
setunitdata(.@npcId, UDT_HAIRCOLOR, 13);
.sex = G_MALE;
.distance = 5;
end;
}
|