diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-08 02:39:04 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-08 02:39:04 -0200 |
commit | 33ee11de2712a11d8e869458c6d22e91d7375b93 (patch) | |
tree | f347bb48a082235d9da386f4e7b852580e87fe53 /npc/functions/util.txt | |
parent | bb96e38207034e3f245a25401c21b2ec89f80fde (diff) | |
download | serverdata-33ee11de2712a11d8e869458c6d22e91d7375b93.tar.gz serverdata-33ee11de2712a11d8e869458c6d22e91d7375b93.tar.bz2 serverdata-33ee11de2712a11d8e869458c6d22e91d7375b93.tar.xz serverdata-33ee11de2712a11d8e869458c6d22e91d7375b93.zip |
Register Woody quest in Hurnscald Reputation Controller.
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 72eb8b68c..46f5bce83 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -219,7 +219,7 @@ function script reputation { - // Hurnscald Quests (7 points) + // Hurnscald Quests (8 points) } else if (getarg(0) == "Hurns") { // Alan Quest (+1 rep) @@ -250,8 +250,12 @@ function script reputation { if (getq(HurnscaldQuest_BloodDonor) >= 1) .@nr=.@nr+1; + // Woody Quest (+1 rep) + if (getq(HurnscaldQuest_Woody) >= 5) + .@nr=.@nr+1; + // HURNSCALD Magical Forumula - .@nr=.@nr*100/7; + .@nr=.@nr*100/8; |