diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-12 11:20:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-12 11:20:04 -0300 |
commit | 4bdaf16f00b116265879c16d5a889974261b38ed (patch) | |
tree | 1edee4ab2c7eb8aa278821215215a7e6f32574d3 | |
parent | 85b129a8cb7a50d17b3ce5da429c5c14906c1a13 (diff) | |
download | serverdata-4bdaf16f00b116265879c16d5a889974261b38ed.tar.gz serverdata-4bdaf16f00b116265879c16d5a889974261b38ed.tar.bz2 serverdata-4bdaf16f00b116265879c16d5a889974261b38ed.tar.xz serverdata-4bdaf16f00b116265879c16d5a889974261b38ed.zip |
Rebalance lockpick minigame exp reward
-rw-r--r-- | npc/019-1-1/miler.txt | 2 | ||||
-rw-r--r-- | npc/functions/TODO.txt | 2 | ||||
-rw-r--r-- | npc/functions/lockpicks.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/npc/019-1-1/miler.txt b/npc/019-1-1/miler.txt index a4ac714e1..5fd103653 100644 --- a/npc/019-1-1/miler.txt +++ b/npc/019-1-1/miler.txt @@ -157,7 +157,7 @@ L_Box: // Quest Complete L_Success: setq LoFQuest_EPISODE, 6, 0; - getexp 25000, 0; + getexp 25000, 0; // @Saulc DO NOT INCREASE THIS VALUE, if you think this is low, give player MobPoints. // TODO: Pre-Requisite Item? (eg. Lazurite or Bent Neddle) // TODO: White Roses quest. We could sell them high and allow drop during spring mesc l("His golden ring pops right out of it."); diff --git a/npc/functions/TODO.txt b/npc/functions/TODO.txt index 2cacec81b..8060fe579 100644 --- a/npc/functions/TODO.txt +++ b/npc/functions/TODO.txt @@ -86,7 +86,7 @@ function script ToDoMerc { } if (@pos >= .@d) { - MERC_EXP += .@d*.@m; + MERC_EXP += .@d*.@m-MERC_RANK; return 1; } } diff --git a/npc/functions/lockpicks.txt b/npc/functions/lockpicks.txt index 055500cf6..72811d7f9 100644 --- a/npc/functions/lockpicks.txt +++ b/npc/functions/lockpicks.txt @@ -86,7 +86,7 @@ function script LockPicking { } if (@pos >= .@d) { - THIEF_EXP += .@d*.@m; + THIEF_EXP += .@d*.@m-THIEF_RANK; return 1; } } |