diff options
-rw-r--r-- | npc/003-0-1/professor.txt | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt index a58bc2fab..9adcfc689 100644 --- a/npc/003-0-1/professor.txt +++ b/npc/003-0-1/professor.txt @@ -66,32 +66,33 @@ OnSpeeching: } // You're being annoying, now + // 1 hour, 1200 exp, enough from level 1 to level 10 AFKING+=1; switch (AFKING) { - case 1200: - // 24 hours, 1200 exp, enough from level 1 to level 10 + case 28800: + // 24 hours, 28,800 exp sk_lvup(TMW2_SPEECH); - npctalk3 l("@@, you're a good student. You have a bright future if you keep listening to me."); + npctalk3 l("%s, you're a good student. You have a bright future if you keep listening to me.", strcharinfo(0)); dispbottom l("Learning from seeing (aka. AFK-ing) skill LEVEL UP!!"); break; - case 8400: - // +1 week, 16800 exp, enough from level 1 to 23 (only AFK-ing!) + case 201600: + // +1 week, +403,200 exp sk_lvup(TMW2_SPEECH); - npctalk3 l("@@, you're a good student. You have a bright future if you keep listening to me."); + npctalk3 l("%s, you're a good student. You have a bright future if you keep listening to me.", strcharinfo(0)); dispbottom l("Learning from seeing (aka. AFK-ing) skill LEVEL UP!!"); break; - case 36000: - // +1 month, 108000 exp, enough from level 1 to ~36 (only AFK-ing!) + case 864000: + // +1 month, +2,592,000 exp sk_lvup(TMW2_SPEECH); - npctalk3 l("@@, you're a good student. You have a bright future if you keep listening to me."); + npctalk3 l("%s, you're a good student. You have a bright future if you keep listening to me.", strcharinfo(0)); dispbottom l("Learning from seeing (aka. AFK-ing) skill LEVEL UP!!"); break; - case 108000: - // +3 months, 432000 exp, enough from level 1 to ~46 (only AFK-ing!) + case 2592000: + // +3 months, +10,368,000 exp // Note: In the needed time (~4 months) you should be over 60 if you // were fighting instead... sk_lvup(TMW2_SPEECH); - npctalk3 l("@@, you're a good student. You have a bright future if you keep listening to me."); + npctalk3 l("%s, you're a good student. You have a bright future if you keep listening to me.", strcharinfo(0)); dispbottom l("Learning from seeing (aka. AFK-ing) skill LEVEL UP!!"); break; } |