diff options
Diffstat (limited to 'npc/026-7/boss.txt')
-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; |