diff options
Diffstat (limited to 'npc/annuals')
-rw-r--r-- | npc/annuals/xmas/core.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/annuals/xmas/core.txt b/npc/annuals/xmas/core.txt index 2abeefce..d1ba0b19 100644 --- a/npc/annuals/xmas/core.txt +++ b/npc/annuals/xmas/core.txt @@ -130,6 +130,8 @@ function script XmasMainXpBpReward { goto L_LevelingReward; L_EndGameReward: + if (checkidle() > MAX_IDLE) + return; @xmas_bp_reward = 100 + rand(@xmas_reward, 2 * @xmas_reward); BOSS_POINTS = BOSS_POINTS + @xmas_bp_reward; message strcharinfo(0), "You gain " + @xmas_bp_reward + " Bosspoints, giving you a total of " + BOSS_POINTS + "."; |