// 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,35,29,0 script Luca NPC_PLAYER,{ mesn; mesq l("I am the Magic Warriors 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; }