diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-15 17:21:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-15 17:21:30 -0300 |
commit | 14e4b85e119173989d0eb85bf596b7d0e7013ff7 (patch) | |
tree | 6106a75c47cc8fa48cf442f1efbe0e864808b508 /npc/003-0-1/professor.txt | |
parent | 741e601a03aa9dc2c2a06ed9d4e9b796d3da7a92 (diff) | |
download | serverdata-14e4b85e119173989d0eb85bf596b7d0e7013ff7.tar.gz serverdata-14e4b85e119173989d0eb85bf596b7d0e7013ff7.tar.bz2 serverdata-14e4b85e119173989d0eb85bf596b7d0e7013ff7.tar.xz serverdata-14e4b85e119173989d0eb85bf596b7d0e7013ff7.zip |
Fix bugs, move Colin and Luca to second building, change restrictions of second
building, add Professor and Researcher for new feature.
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; +} + |