diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-06 20:00:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-06 20:00:34 -0300 |
commit | f91f7c17930746a2a29fe4fdc4f4244456aae423 (patch) | |
tree | 39127919135b1e49600b551e9e39f5856a0fcedc /npc/functions/util.txt | |
parent | 003e8f6d1d839f1b14eaa289afe459d8e45a2ec6 (diff) | |
download | serverdata-f91f7c17930746a2a29fe4fdc4f4244456aae423.tar.gz serverdata-f91f7c17930746a2a29fe4fdc4f4244456aae423.tar.bz2 serverdata-f91f7c17930746a2a29fe4fdc4f4244456aae423.tar.xz serverdata-f91f7c17930746a2a29fe4fdc4f4244456aae423.zip |
Fix Candor Hero title
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 89320b531..3bfbd3bea 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -405,7 +405,7 @@ function script reputation { .@nr=.@nr+1; // Tolchi Quest (+1 rep) - if (getq(CandorQuest_Tolchi) >= 4) + if (getq(CandorQuest_Tolchi) >= 3) .@nr=.@nr+1; // Maya Quest (+1 rep) @@ -416,8 +416,12 @@ function script reputation { if (getq(CandorQuest_Rosen) >= 3) .@nr=.@nr+1; + // Marggo Quest (+1 rep) + if (getq(CandorQuest_Marggo) >= 1) + .@nr=.@nr+1; + // CANDOR Magical Forumula - .@nr=.@nr*100/9; + .@nr=.@nr*100/10; // Final |