summaryrefslogtreecommitdiff
path: root/npc/functions/event.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-02-25 01:34:17 -0300
committerJesusaves <cpntb1@ymail.com>2020-02-25 01:34:17 -0300
commit8eafc97eb466b89048729cc93546560c062f94f8 (patch)
treecc979c1806d3cdc33b53a841969b280ea59cec2c /npc/functions/event.txt
parentf1a2a02f18b8e14d65b9183f703a62fbf7e5173a (diff)
downloadserverdata-8eafc97eb466b89048729cc93546560c062f94f8.tar.gz
serverdata-8eafc97eb466b89048729cc93546560c062f94f8.tar.bz2
serverdata-8eafc97eb466b89048729cc93546560c062f94f8.tar.xz
serverdata-8eafc97eb466b89048729cc93546560c062f94f8.zip
Some debug, and I've found out the bug...
Diffstat (limited to 'npc/functions/event.txt')
-rw-r--r--npc/functions/event.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt
index 631a5093f..a62c8f0a7 100644
--- a/npc/functions/event.txt
+++ b/npc/functions/event.txt
@@ -225,6 +225,7 @@ function script sThanksgiving {
end;
// Event Schedule (all dates are inclusive)
+// NEVER, ever, include the last day of the month.
OnInit:
.valentine_stday=13;
.valentine_stmon=FEBRUARY;
@@ -253,7 +254,7 @@ OnInit:
.thanks_stday=1;
.thanks_stmon=NOVEMBER;
- .thanks_endday=30;
+ .thanks_endday=29;
.thanks_endmon=NOVEMBER;
.xmas_stday=19;
@@ -271,6 +272,12 @@ OnClock0000:
debugmes "EVENT CORE, the %02d/%02d", .@d, .@m;
debugmes "Valentine: %02d/%02d", .valentine_stday, .valentine_stmon;
debugmes "Valentine End: %02d/%02d", .valentine_endday, .valentine_endmon;
+ if ($@DEBUG_OD)
+ .@d=$@DEBUG_OD;
+ if ($@DEBUG_OM)
+ .@m=$@DEBUG_OM;
+ debugmes "EVENT CORE, the %02d/%02d", .@d, .@m;
+
// Handle Valentine Day
if (.@m >=.valentine_stmon && .@m <= .valentine_endmon) {
@@ -453,6 +460,7 @@ OnClock0000:
$EVENT$="";
}
}
+ debugmes "EVENT CORE has finished";
end;
}