summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/019-1-1/miler.txt2
-rw-r--r--npc/functions/TODO.txt2
-rw-r--r--npc/functions/lockpicks.txt2
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;
}
}