// TMW2 Script // Author: // Jesusalva // Description: // Professor - allows you to gain EXP for idling (Speech skill) 003-0-1,35,29,0 script Professor NPC_PLAYER,{ mesn; mesq l("I've mastered the art of speech and communication."); close; OnInit: .@npcId = getnpcid(.name$); setunitdata(.@npcId, UDT_HEADTOP, GraduationCap); setunitdata(.@npcId, UDT_HEADMIDDLE, GraduationRobe); setunitdata(.@npcId, UDT_HEADBOTTOM, DeepBlackBoots); setunitdata(.@npcId, UDT_WEAPON, CottonGloves); setunitdata(.@npcId, UDT_HAIRSTYLE, 2); setunitdata(.@npcId, UDT_HAIRCOLOR, 4); .sex=G_MALE; .distance=5; end; }