diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-06 12:13:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-06 12:13:27 -0300 |
commit | 08bc020d32b0842c20dc73cbae16e4ae09817d8a (patch) | |
tree | 50cef1aff111cc4cd1a812ff36506e3f581ec2d4 /npc | |
parent | 97e25073406e58ba2b3ce3761b8a790335e4687c (diff) | |
download | serverdata-08bc020d32b0842c20dc73cbae16e4ae09817d8a.tar.gz serverdata-08bc020d32b0842c20dc73cbae16e4ae09817d8a.tar.bz2 serverdata-08bc020d32b0842c20dc73cbae16e4ae09817d8a.tar.xz serverdata-08bc020d32b0842c20dc73cbae16e4ae09817d8a.zip |
You don't know how much Thief EXP you need to rank up, and it is more complete now
Therefore, lower the compulsory tax from 95% to mere 20%.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/015-2/ben.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/015-2/ben.txt b/npc/015-2/ben.txt index f84fbec73..bbd5b1553 100644 --- a/npc/015-2/ben.txt +++ b/npc/015-2/ben.txt @@ -31,7 +31,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_EXP=(THIEF_EXP*8/10); // Penalty for postponing rank up (you keep 80%) THIEF_RANK+=1; mesn; mesq l("Congrats! You rank up! You are now a(n) @@!", thiefrank()); |