diff options
Diffstat (limited to 'npc/003-0-1/professor.txt')
-rw-r--r-- | npc/003-0-1/professor.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt new file mode 100644 index 000000000..d4c088d2f --- /dev/null +++ b/npc/003-0-1/professor.txt @@ -0,0 +1,25 @@ +// 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; +} + |