diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-14 15:30:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-14 15:30:08 -0300 |
commit | 2b60c2defde8e5f499c9472f953d2ca5c0395c7d (patch) | |
tree | 06279109b015238fef4363044014cf06ec102da3 /npc/027-0/enrique.txt | |
parent | a5534e046656f14a951ba3c5f86023389fd97986 (diff) | |
download | serverdata-2b60c2defde8e5f499c9472f953d2ca5c0395c7d.tar.gz serverdata-2b60c2defde8e5f499c9472f953d2ca5c0395c7d.tar.bz2 serverdata-2b60c2defde8e5f499c9472f953d2ca5c0395c7d.tar.xz serverdata-2b60c2defde8e5f499c9472f953d2ca5c0395c7d.zip |
And the preparative for STUDY skill!
Diffstat (limited to 'npc/027-0/enrique.txt')
-rw-r--r-- | npc/027-0/enrique.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/npc/027-0/enrique.txt b/npc/027-0/enrique.txt index d41f74f26..8b92b1b4c 100644 --- a/npc/027-0/enrique.txt +++ b/npc/027-0/enrique.txt @@ -21,8 +21,8 @@ l("What are Research Points"), l("What is the Scholar Rank?"), l("Who are the most famous scholars?"), - rif(!ACADEMIC_RANK, l("I would like to enroll!")); - // TODO: Give TMW2_STUDY for MSP. Need X skills learnt or 1M GP. + rif(!ACADEMIC_RANK, l("I would like to enroll!")), + rif(getskilllv(TMW2_STUDY) < ACADEMIC_RANK, l("I would like to learn a new skill!")); mes ""; switch (@menu) { case 1: @@ -90,6 +90,11 @@ mesn; mesq l("Abuse can be determined by your peers or by the grandmasters, so be careful."); break; + case 8: + // TODO: Give TMW2_STUDY for MSP. Need X skills learnt or 1M GP. + mesn; + mesq l("Soon enough, young %s. The study skill is almost finished... Muahaha!", strcharinfo(0)); + break; } } while (@menu != 1); close; |