summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-10-17 10:28:01 -0300
committerJesusaves <cpntb1@ymail.com>2019-10-17 10:28:01 -0300
commitf89a5f97564dd89d8a3b147a1e272661ed019fc0 (patch)
treea5bce16faf6bc83b94ed6055949fa3776e1a25fb
parent87464463b2ff1a9564bd5d962a1dbe114f341a34 (diff)
downloadserverdata-f89a5f97564dd89d8a3b147a1e272661ed019fc0.tar.gz
serverdata-f89a5f97564dd89d8a3b147a1e272661ed019fc0.tar.bz2
serverdata-f89a5f97564dd89d8a3b147a1e272661ed019fc0.tar.xz
serverdata-f89a5f97564dd89d8a3b147a1e272661ed019fc0.zip
Okay I agree with Saulc now this might need a nerf
-rw-r--r--npc/003-0-1/professor.txt25
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;
}