summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-0-1/professor.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt
index 50941cf98..fb32e82dd 100644
--- a/npc/003-0-1/professor.txt
+++ b/npc/003-0-1/professor.txt
@@ -47,9 +47,9 @@ OnTimer3100:
OnSpeeching:
deltimer(.name$+"::OnSpeeching"); // safeguard
- // Max AFK time is determined as 15 minutes + 1 second every 20 minutes AFKed
- // Capped at 1 hour (you've AFK'ed 37 days and 12 hours)
- .@maxafk=min(3600, 900+(AFKING/1200));
+ // Max AFK time is determined as 15 minutes + 1 second every 10 minutes AFKed
+ // Capped at 2 hours (you've AFK'ed 37 days and 12 hours)
+ .@maxafk=min(7200, 900+(AFKING/600));
// If you have been IDLE for at least 2 seconds you'll get the EXP.
// Note you don't need to sit, only be idle.
if (is_between(2, .@maxafk, checkidle())) {