summaryrefslogtreecommitdiff
path: root/npc/003-0-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-10-17 10:18:36 -0300
committerJesusaves <cpntb1@ymail.com>2019-10-17 10:18:36 -0300
commit87464463b2ff1a9564bd5d962a1dbe114f341a34 (patch)
tree60f230fae6ea03e002aee72f2b11653b13a5e5bd /npc/003-0-1
parentc0c0af5e4a24a841676319e5a8017e7f9775be5c (diff)
downloadserverdata-87464463b2ff1a9564bd5d962a1dbe114f341a34.tar.gz
serverdata-87464463b2ff1a9564bd5d962a1dbe114f341a34.tar.bz2
serverdata-87464463b2ff1a9564bd5d962a1dbe114f341a34.tar.xz
serverdata-87464463b2ff1a9564bd5d962a1dbe114f341a34.zip
safeguards
Diffstat (limited to 'npc/003-0-1')
-rw-r--r--npc/003-0-1/professor.txt17
1 files changed, 15 insertions, 2 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt
index 43fd6f6cd..a58bc2fab 100644
--- a/npc/003-0-1/professor.txt
+++ b/npc/003-0-1/professor.txt
@@ -10,6 +10,18 @@
next;
mesn;
mesq l("Sit on the rug in front of me and learn wisdom! Maybe you'll learn something this way.");
+ if (!TUTORIAL) close;
+ next;
+ mes ".:: AFK EXP AREA ::.";
+ mesc l("By sitting in the rug in front of the professor (the one with benches)");
+ mesc l("and \"listening\" to his speech, you'll get EXP!");
+ mes "";
+ mesc l("If you get too much exp this way, a skill will level up and you'll get even more!");
+ mesc l("But remember: %s", b(l("You cannot sit idle for too long gaining EXP!")));
+ mesc l("After about 15 minutes AFK, you won't get EXP anymore.");
+ mes "";
+ mesc l("In overall, you'll get more experience by fighting monsters.");
+ mesc l("But if you only want to sit down and chat, this area is ideal for you!");
close;
OnInit:
@@ -32,6 +44,7 @@ OnTimer3000:
end;
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=max(3600, 900+(AFKING/1200));
@@ -81,12 +94,12 @@ OnSpeeching:
npctalk3 l("@@, you're a good student. You have a bright future if you keep listening to me.");
dispbottom l("Learning from seeing (aka. AFK-ing) skill LEVEL UP!!");
break;
-
+ }
// There are no further upgrades to TMW2_SPEECH skill
// You'll need to get the AFK Set if you want to level from 4 to 10.
- }
}
+ deltimer(.name$+"::OnSpeeching"); // safeguard
end;
}