diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-17 17:24:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-17 17:24:31 -0300 |
commit | 59180c94e7f5859fc5b5b60d678030d30c1fb7fd (patch) | |
tree | 625de5196c071fdb4506c8ddc669986e722b1f39 /npc/functions/util.txt | |
parent | 0f7b6075c82c005d454000b39b4c5185993f0011 (diff) | |
download | serverdata-59180c94e7f5859fc5b5b60d678030d30c1fb7fd.tar.gz serverdata-59180c94e7f5859fc5b5b60d678030d30c1fb7fd.tar.bz2 serverdata-59180c94e7f5859fc5b5b60d678030d30c1fb7fd.tar.xz serverdata-59180c94e7f5859fc5b5b60d678030d30c1fb7fd.zip |
Fix bugs, and add Blossom Quest for Enchanted Herb Bag.
Even sounds silly given how bad Thorn is rewarding you.
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 31789ee92..7a47a8cae 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -270,11 +270,15 @@ function script reputation { .@nr=.@nr+1; // Thorn Quest (+1 rep) - if (getq(HurnscaldQuest_Thorn) >= 11) + if (getq(HurnscaldQuest_Thorn) >= 1) + .@nr=.@nr+1; + + // Blossom Quest (+1 rep) + if (getq(HurnscaldQuest_Blossom) >= 1) .@nr=.@nr+1; // HURNSCALD Magical Forumula - .@nr=.@nr*100/10; + .@nr=.@nr*100/11; |