diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-18 14:51:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-18 14:51:11 -0300 |
commit | 7c7048271479d6dd60031d5b7fd0cd133ec41a01 (patch) | |
tree | d863bd6ce24fa581bc514e2110eeb4446a57842b /npc/functions | |
parent | 1e3d82fa95af0e6bbe5a6f698aac1299b68f583d (diff) | |
download | serverdata-7c7048271479d6dd60031d5b7fd0cd133ec41a01.tar.gz serverdata-7c7048271479d6dd60031d5b7fd0cd133ec41a01.tar.bz2 serverdata-7c7048271479d6dd60031d5b7fd0cd133ec41a01.tar.xz serverdata-7c7048271479d6dd60031d5b7fd0cd133ec41a01.zip |
Meriel & Taenya's Quests
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 370923bf2..3b9b0ba32 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -479,8 +479,16 @@ function script reputation { if (getq(FrostiaQuest_Rydel) >= 2) .@nr=.@nr+1; + // Meriel Quest (+1 rep) + if (getq(FrostiaQuest_Meriel) >= 2) + .@nr=.@nr+1; + + // Taenya Quest (+1 rep) + if (getq(FrostiaQuest_Taenya) >= 2) + .@nr=.@nr+1; + // FROSTIA Magical Forumula - .@nr=.@nr*100/5; + .@nr=.@nr*100/7; |