summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-0-1/professor.txt10
-rw-r--r--npc/config/magic.txt2
2 files changed, 11 insertions, 1 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt
index 37a69640b..d98594e36 100644
--- a/npc/003-0-1/professor.txt
+++ b/npc/003-0-1/professor.txt
@@ -60,6 +60,16 @@ OnSpeeching:
getexp .@bxp, .@jxp;
+ // Experience for Homunculus
+ if (gethominfo(0))
+ gethomunexp(1);
+
+ // Research happens roughly every minute, based on Study skill
+ if (getskilllv(TMW2_STUDY)) {
+ if (AFKING % 20 == 0)
+ MAGIC_RP+=getskilllv(TMW2_STUDY);
+ }
+
// If you are learning TMW2_READANCIENTLANGUAGES
if (ANCIENTLANGUAGEBOUNCER) {
ANCIENTLANGUAGEBOUNCER-=1;
diff --git a/npc/config/magic.txt b/npc/config/magic.txt
index 76f207b3a..2f9ec4b53 100644
--- a/npc/config/magic.txt
+++ b/npc/config/magic.txt
@@ -469,7 +469,7 @@ OnInit:
CLASS_OTHER, 100);
// Study
RegisterMagic(0, TMW2_STUDY, 1, Manapple, 1,
- CLASS_OTHER, 1000);
+ CLASS_OTHER, 400);
end;
}