summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-1/constableperry.txt1
-rw-r--r--npc/015-2/ben.txt1
2 files changed, 2 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());
diff --git a/npc/015-2/ben.txt b/npc/015-2/ben.txt
index b8dc4982f..9852ffa48 100644
--- a/npc/015-2/ben.txt
+++ b/npc/015-2/ben.txt
@@ -30,6 +30,7 @@ L_Quest:
next;
if (THIEF_EXP > (THIEF_RANK*2)**5) {
THIEF_EXP-=(THIEF_RANK*2)**5;
+ THIEF_EXP=(THIEF_EXP/20); // Penalty for postponing rank up (you keep 5%)
THIEF_RANK+=1;
mesn;
mesq l("Congrats! You rank up! You are now a(n) @@!", thiefrank());