diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-16 15:28:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-16 15:28:46 -0300 |
commit | 3a79d8000fb67a21ab14139600a37ace33a4a1e6 (patch) | |
tree | 54769c8196a25ed29a135c112bb3028a28c5174b /npc/003-0-1 | |
parent | 6713c20da5d9937f006024a8648e9edca9c2505b (diff) | |
download | serverdata-3a79d8000fb67a21ab14139600a37ace33a4a1e6.tar.gz serverdata-3a79d8000fb67a21ab14139600a37ace33a4a1e6.tar.bz2 serverdata-3a79d8000fb67a21ab14139600a37ace33a4a1e6.tar.xz serverdata-3a79d8000fb67a21ab14139600a37ace33a4a1e6.zip |
AFKing - Be slower at granting RP, even with study skill.
Diffstat (limited to 'npc/003-0-1')
-rw-r--r-- | npc/003-0-1/professor.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt index 59897c42b..f0a0685fd 100644 --- a/npc/003-0-1/professor.txt +++ b/npc/003-0-1/professor.txt @@ -64,9 +64,9 @@ OnSpeeching: if (gethominfo(0)) gethomunexp(1); - // Research happens roughly every minute, based on Study skill + // Research happens roughly every five minutes, based on Study skill if (getskilllv(TMW2_STUDY)) { - if (AFKING % 20 == 0) + if (AFKING % 100 == 0) MAGIC_RP+=getskilllv(TMW2_STUDY); } |