diff options
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 805bdea60..370923bf2 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -459,14 +459,6 @@ function script reputation { // Frostia Quests (3 points) } else if (getarg(0) == "Frostia") { - // Rescue Yeti Quest (+1 rep) - if (getq(NivalisQuest_Well) >= 2) - .@nr=.@nr+1; - - // Rescue Cindy Quest (+1 rep) - if (getq(NivalisQuest_Cindy) >= 5) - .@nr=.@nr+1; - // Homunculus Quest (+1 rep) if (getq(FrostiaQuest_Homunculus) >= 4) .@nr=.@nr+1; @@ -479,6 +471,14 @@ function script reputation { if (getq(FrostiaQuest_Jeremy) >= 2) .@nr=.@nr+1; + // Erlan Quest (+1 rep) + if (getq(FrostiaQuest_Erlan) >= 2) + .@nr=.@nr+1; + + // Rydel Quest (+1 rep) + if (getq(FrostiaQuest_Rydel) >= 2) + .@nr=.@nr+1; + // FROSTIA Magical Forumula .@nr=.@nr*100/5; |