diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-17 04:39:53 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-17 04:39:53 -0200 |
commit | bca5dec4ed361c385bf550ef47c96cf7147587b1 (patch) | |
tree | 05abeb119df6b1ac9fcde09c93a5fd58896f73e8 /npc/functions | |
parent | f6aaeaf0dc767d53352f98b92812be653e1d2287 (diff) | |
download | serverdata-bca5dec4ed361c385bf550ef47c96cf7147587b1.tar.gz serverdata-bca5dec4ed361c385bf550ef47c96cf7147587b1.tar.bz2 serverdata-bca5dec4ed361c385bf550ef47c96cf7147587b1.tar.xz serverdata-bca5dec4ed361c385bf550ef47c96cf7147587b1.zip |
Redistribute LoF points
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 513724f98..807aa6df9 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -194,10 +194,14 @@ function script reputation { .@nr=.@nr*100/7; - // Land Of Fire Quests (4 points) + // Land Of Fire Quests (5 points) } else if (getarg(0) == "LoF") { - // The EPISODE (+1 rep) + // The EPISODE + //// Tea For Two (+1 rep) + if (getq(LoFQuest_EPISODE) >= 2) + .@nr=.@nr+1; + //// Early Christmas (+1 rep) if (getq(LoFQuest_EPISODE) >= 6) .@nr=.@nr+1; @@ -214,7 +218,7 @@ function script reputation { .@nr=.@nr+1; // LAND OF FIRE Magical Forumula - .@nr=.@nr*100/4; + .@nr=.@nr*100/5; |