diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-23 19:27:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-23 19:27:36 -0300 |
commit | 620db53a8952ce8e9ad17b60e3b96ccd3af2d70c (patch) | |
tree | 12c1381eafd2954980f9a68e63d3c9d972552031 /npc/026-7 | |
parent | 46ebe4dee05b96554f8e0e88c824a54bff496fa8 (diff) | |
download | serverdata-620db53a8952ce8e9ad17b60e3b96ccd3af2d70c.tar.gz serverdata-620db53a8952ce8e9ad17b60e3b96ccd3af2d70c.tar.bz2 serverdata-620db53a8952ce8e9ad17b60e3b96ccd3af2d70c.tar.xz serverdata-620db53a8952ce8e9ad17b60e3b96ccd3af2d70c.zip |
No penalty to losing the Showdown after Act 4 is over
Diffstat (limited to 'npc/026-7')
-rw-r--r-- | npc/026-7/boss.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/026-7/boss.txt b/npc/026-7/boss.txt index d687610ac..573eb915f 100644 --- a/npc/026-7/boss.txt +++ b/npc/026-7/boss.txt @@ -217,9 +217,11 @@ OnTimer10000: kamibroadcast("The MONSTER KING has WON the showdown!", "WORLD HEART"); // Apply some kind of penalty, like lowering EXP rate in 5% for a hour // (NLib was 50% for 24 hours...) - $@EXP_EVENT=-5; - $@EXP_EVENT_TIME=1; - donpcevent "@exprate::OnPlayerCall"; + if ($GAME_STORYLINE >= 5) { + $@EXP_EVENT=-5; + $@EXP_EVENT_TIME=1; + donpcevent "@exprate::OnPlayerCall"; + } } stopnpctimer; end; |