summaryrefslogtreecommitdiff
path: root/npc/functions/util.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r--npc/functions/util.txt22
1 files changed, 21 insertions, 1 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 05482b2c6..72eb8b68c 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -297,7 +297,7 @@ function script reputation {
if (getq(NivalisQuest_Well) >= 2)
.@nr=.@nr+1;
- // Nivalis Well Quest (+1 rep)
+ // Nivalis Cindy Quest (+1 rep)
if (getq(NivalisQuest_Cindy) >= 5)
.@nr=.@nr+1;
@@ -337,6 +337,26 @@ function script reputation {
.@nr=.@nr*100/5;
+
+
+
+
+
+ // Frostia Quests (2 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;
+
+ // FROSTIA Magical Forumula
+ .@nr=.@nr*100/2;
+
+
// Final
}