diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-22 17:20:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-22 17:20:44 -0300 |
commit | 16391e7db6651ed931f86030980f2ed1bfb601a7 (patch) | |
tree | 06eef8871c10ae62fdab6cbc8869bef36a091810 /npc/003-0-1 | |
parent | 2e9c1c29a3dad1bc2ac4eb661bd3fb185f0950cb (diff) | |
download | serverdata-16391e7db6651ed931f86030980f2ed1bfb601a7.tar.gz serverdata-16391e7db6651ed931f86030980f2ed1bfb601a7.tar.bz2 serverdata-16391e7db6651ed931f86030980f2ed1bfb601a7.tar.xz serverdata-16391e7db6651ed931f86030980f2ed1bfb601a7.zip |
Fix minor "bug" on idle EXP-ing
Diffstat (limited to 'npc/003-0-1')
-rw-r--r-- | npc/003-0-1/professor.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/003-0-1/professor.txt b/npc/003-0-1/professor.txt index e454e1805..dbde5ce08 100644 --- a/npc/003-0-1/professor.txt +++ b/npc/003-0-1/professor.txt @@ -35,7 +35,8 @@ OnSpeeching: // If you have been IDLE for at least 2 seconds (max AFK 15 minutes) // You'll get the EXP. Note you don't need to sit, only be idle. if (is_between(2, 900, checkidle())) { - getexp 1+getskilllv(TMW2_SPEECH),1; + .@sk=getskilllv(TMW2_SPEECH); + getexp 1+.@sk,1+(.@sk/2); // dispbottom l("It is a boring speech..."); // If you are learning TMW2_READANCIENTLANGUAGES |