diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-13 10:30:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-13 10:30:58 -0300 |
commit | 2ee39b2708f609d0e91e8d2c2217207ca64795f1 (patch) | |
tree | aca5e4621b4f434620185ee58afb601a05174e31 /npc/003-1 | |
parent | 29c71ff3e629de9f640735319a6e4af8e4cb4520 (diff) | |
download | serverdata-2ee39b2708f609d0e91e8d2c2217207ca64795f1.tar.gz serverdata-2ee39b2708f609d0e91e8d2c2217207ca64795f1.tar.bz2 serverdata-2ee39b2708f609d0e91e8d2c2217207ca64795f1.tar.xz serverdata-2ee39b2708f609d0e91e8d2c2217207ca64795f1.zip |
If you don't level up your merc/thief rank, you'll have a certain penalty.
You'll only keep 5% from excessive experience (to keep balance)
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/constableperry.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/npc/003-1/constableperry.txt b/npc/003-1/constableperry.txt index af211f518..e9d735692 100644 --- a/npc/003-1/constableperry.txt +++ b/npc/003-1/constableperry.txt @@ -30,6 +30,7 @@ L_Quest: next; if (MERC_EXP > (MERC_RANK*2)**5) { MERC_EXP-=(MERC_RANK*2)**5; + MERC_EXP=(MERC_EXP/20); // Penalty for postponing rank up (you keep 5%) MERC_RANK+=1; mesn; mesq l("Congrats! You rank up! You are now a(n) @@!", mercrank()); |