diff options
-rw-r--r-- | npc/functions/util.txt | 16 |
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; |