diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-20 18:55:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-20 18:55:59 -0300 |
commit | 9b1ce893d55542cbb2a6182dc8eb1a40a3f66cd5 (patch) | |
tree | 0dcfccb4011a7c9e0af1c5640105b0ac94c642cb | |
parent | 14efb6d5c2a3a617fc121fe0dbdd341a1c21b1ca (diff) | |
download | serverdata-9b1ce893d55542cbb2a6182dc8eb1a40a3f66cd5.tar.gz serverdata-9b1ce893d55542cbb2a6182dc8eb1a40a3f66cd5.tar.bz2 serverdata-9b1ce893d55542cbb2a6182dc8eb1a40a3f66cd5.tar.xz serverdata-9b1ce893d55542cbb2a6182dc8eb1a40a3f66cd5.zip |
Fix auto rate up
-rw-r--r-- | npc/commands/rate-management.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/commands/rate-management.txt b/npc/commands/rate-management.txt index f3e7ba77c..e9e858ee1 100644 --- a/npc/commands/rate-management.txt +++ b/npc/commands/rate-management.txt @@ -80,7 +80,7 @@ OnPlayerCall: end; // $@EXP_EVENT will determine the boost and should not be above 25% // Default duration is one hour, or whatever $@EXP_EVENT_TIME is - $@EXP_EVENT=limit(0, $@EXP_EVENT, 150); + $@EXP_EVENT=200+limit(0, $@EXP_EVENT, 150); $@EXP_EVENT_TIME=limit(1, $@EXP_EVENT_TIME, 6); // Default duration is one hour, or whatever $@EXP_EVENT_TIME is |