summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-05-24 18:37:06 -0300
committerJesusaves <cpntb1@ymail.com>2024-05-24 18:37:06 -0300
commit8de09b3eca9ed9a8ef1c374216edcd5481e3366e (patch)
tree9b302561e230857a6c822abb67eeacdfaf0b76de
parent8e27154005a9e6c10ffbf97fc4ce99d6914f7076 (diff)
downloadserverdata-8de09b3eca9ed9a8ef1c374216edcd5481e3366e.tar.gz
serverdata-8de09b3eca9ed9a8ef1c374216edcd5481e3366e.tar.bz2
serverdata-8de09b3eca9ed9a8ef1c374216edcd5481e3366e.tar.xz
serverdata-8de09b3eca9ed9a8ef1c374216edcd5481e3366e.zip
Update reputation() so Milly is updated properly.
-rw-r--r--npc/functions/util.txt16
1 files changed, 10 insertions, 6 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index cd89a1c2c..2a6cde446 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -367,7 +367,7 @@ function script reputation {
- // Land Of Fire Quests (7 points)
+ // Land Of Fire Quests (8 points)
} else if (getarg(0) == "LoF") {
// The EPISODE
@@ -396,10 +396,12 @@ function script reputation {
if (getq(LoFQuest_Pets) >= 1)
.@nr=.@nr+1;
- // TODO: Inspector Quest
+ // Inspector Quest (TODO)
+ if (getq(LoFQuest_Inspector) >= 6)
+ .@nr=.@nr+1;
// LAND OF FIRE Magical Forumula
- .@nr=.@nr*100/7;
+ .@nr=.@nr*100/8;
@@ -446,7 +448,7 @@ function script reputation {
- // Halinarzo Quests (8 points)
+ // Halinarzo Quests (9 points)
} else if (getarg(0) == "Halin") {
// Foxhound Famine Quest (+1 rep)
@@ -481,10 +483,12 @@ function script reputation {
if (getq(HalinarzoQuest_Speed) >= 1)
.@nr=.@nr+1;
- // TODO: Katze Quest
+ // Katze Quest (TODO)
+ if (getq(CaveQuest_Katze) >= 1)
+ .@nr=.@nr+1;
// HALINARZO Magical Forumula
- .@nr=.@nr*100/8;
+ .@nr=.@nr*100/9;