diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-11-12 22:07:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-11-12 22:07:26 -0300 |
commit | 52576af721441838634458bf57b9b5c425152595 (patch) | |
tree | da9b7545024d45608d4113bdeb4f193d376da44e /npc/functions | |
parent | fec5540260ac708414469abfeb496ef502d74e53 (diff) | |
download | serverdata-52576af721441838634458bf57b9b5c425152595.tar.gz serverdata-52576af721441838634458bf57b9b5c425152595.tar.bz2 serverdata-52576af721441838634458bf57b9b5c425152595.tar.xz serverdata-52576af721441838634458bf57b9b5c425152595.zip |
Draft for AF King Arthur quest
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; |