diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index aa0ad8249..ca802e18b 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -436,7 +436,7 @@ function script reputation { - // Frostia Quests (2 points) + // Frostia Quests (3 points) } else if (getarg(0) == "Frostia") { // Rescue Yeti Quest (+1 rep) @@ -447,8 +447,16 @@ function script reputation { if (getq(NivalisQuest_Cindy) >= 5) .@nr=.@nr+1; + // Homunculus Quest (+1 rep) + if (getq(FrostiaQuest_Homunculus) >= 4) + .@nr=.@nr+1; + + // AFK Cap Quest (+1 rep) + if (getq(FrostiaQuest_AFKCap) >= 5) + .@nr=.@nr+1; + // FROSTIA Magical Forumula - .@nr=.@nr*100/2; + .@nr=.@nr*100/4; |