summaryrefslogtreecommitdiff
path: root/npc/functions/daily.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-22 18:23:01 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-22 18:23:01 -0200
commit9891477a3d6f8477e954e4e5b76356b7c2dcf670 (patch)
tree0ffc758ee8d1933b62e7b781707f0ffea28e47a4 /npc/functions/daily.txt
parent83c173d28418b8d951769abdb53b6f8a1c257dca (diff)
downloadserverdata-9891477a3d6f8477e954e4e5b76356b7c2dcf670.tar.gz
serverdata-9891477a3d6f8477e954e4e5b76356b7c2dcf670.tar.bz2
serverdata-9891477a3d6f8477e954e4e5b76356b7c2dcf670.tar.xz
serverdata-9891477a3d6f8477e954e4e5b76356b7c2dcf670.zip
Special Christmas Login Bonus: During 24/12~26/12, you will get a [Bronze Gift].
But only one, so you can spend time with your family %%I
Diffstat (limited to 'npc/functions/daily.txt')
-rw-r--r--npc/functions/daily.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/npc/functions/daily.txt b/npc/functions/daily.txt
index eb4adb897..0077aecbb 100644
--- a/npc/functions/daily.txt
+++ b/npc/functions/daily.txt
@@ -98,7 +98,18 @@ function script daily_login_bonus_handler {
getexp 0, .@value;
dispbottom l("##2Daily login bonus: ##B@@ Job Exp.##b", .@value);
}
+
+ // Handle event login bonus
+ if (gettime(6) == DECEMBER) {
+ if (!#XMAS_LOGINBONUS && gettime(5) >= 24 && gettime(5) <= 26) {
+ #XMAS_LOGINBONUS=1;
+ getitem BronzeGift, 1;
+ dispbottom "##B##2"+l("Merry Christmas!")+" "+l("You have gained a special login bonus!")+"##b##0";
+ }
+ }
+ // We're done with daily logins
}
+
//debugmes "[DLBH] Finished: "+#LOGIN_DAY+" ok";
return;
}