summaryrefslogtreecommitdiff
path: root/npc/functions/daily.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/daily.txt')
-rw-r--r--npc/functions/daily.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/daily.txt b/npc/functions/daily.txt
index bcd25306b..a6eee8a69 100644
--- a/npc/functions/daily.txt
+++ b/npc/functions/daily.txt
@@ -51,7 +51,10 @@ function script daily_login_bonus_handler {
//debugmes "[DLBH] month checks ok";
// Handle rewards: Streaks first, daily later. Streak reward prevail over daily reward.
- if (#LOGIN_STREAK > 27) {
+ if ($@NOUPDATES) {
+ dispbottom col(l("Updates disabled, daily login reward: 1,000 GP"), 1);
+ Zeny+=1000;
+ } else if (#LOGIN_STREAK > 27) {
getitem StrangeCoin, 2;
getitem CasinoCoins, 1;
dispbottom l("##2 @@ Days login bonus: ##B2x @@, 1x @@##b", #LOGIN_STREAK, getitemlink(StrangeCoin), getitemlink(CasinoCoins));