diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-20 00:21:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-20 00:21:29 -0300 |
commit | a3facf81d9582a1d156f9872b3fe85e78523011b (patch) | |
tree | 9d12f87282f3e6e86b68af964d68ec5fb2a724f3 /npc/functions/util.txt | |
parent | c50a40abc908ddf03276c613306927f10ded2f00 (diff) | |
download | serverdata-a3facf81d9582a1d156f9872b3fe85e78523011b.tar.gz serverdata-a3facf81d9582a1d156f9872b3fe85e78523011b.tar.bz2 serverdata-a3facf81d9582a1d156f9872b3fe85e78523011b.tar.xz serverdata-a3facf81d9582a1d156f9872b3fe85e78523011b.zip |
Prepare utils to receive Nivalis.
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 9fe0905fd..d48c59999 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -190,6 +190,19 @@ function script reputation { if (getq(LoFQuest_Pets) >= 1) .@nr=.@nr+1; + + + + + + // Nivalis Quests (1 points) + } else if (getarg(0) == "Nival") { + + // Nivalis Well Quest (+1 rep) + if (getq(NivalisQuest_Well) >= 2) + .@nr=.@nr+1; + + // Final } @@ -216,6 +229,8 @@ function script nard_time { return 22000; if (getarg(0) == "Hurns") return 24000; + if (getarg(0) == "Nival") + return 48000; } // From Hurnscald @@ -224,6 +239,8 @@ function script nard_time { return 22000; if (getarg(0) == "Tulim") return 24000; + if (getarg(0) == "Nival") + return 24000; } |