diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-29 19:15:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-29 19:15:23 -0300 |
commit | 8cee331d90c862718e9071c1d2ed63451c92ea73 (patch) | |
tree | 66bf2f1b048c85191901a1c205f1a222c5cfb263 /npc/functions/event.txt | |
parent | a44e4821f7fea31c876ed94e8a6e0662eb2f2c01 (diff) | |
download | serverdata-8cee331d90c862718e9071c1d2ed63451c92ea73.tar.gz serverdata-8cee331d90c862718e9071c1d2ed63451c92ea73.tar.bz2 serverdata-8cee331d90c862718e9071c1d2ed63451c92ea73.tar.xz serverdata-8cee331d90c862718e9071c1d2ed63451c92ea73.zip |
Temporary glue
Diffstat (limited to 'npc/functions/event.txt')
-rw-r--r-- | npc/functions/event.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index fe33cb6b7..419eabb08 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -226,8 +226,8 @@ function script sThanksgiving { // Event Schedule (all dates are inclusive) OnInit: - .valentine_stday=13; - .valentine_stmon=FEBRUARY; + .valentine_stday=29; + .valentine_stmon=JANUARY; .valentine_endday=16; .valentine_endmon=FEBRUARY; @@ -263,6 +263,8 @@ OnInit: OnClock0000: .@d=gettime(GETTIME_DAYOFMONTH); .@m=gettime(GETTIME_MONTH); + debugmes "EVENT CORE, the %02d/%02d", .@d, .@m; + debugmes "Valentine: %02d/%02d", .valentine_stday, .valentine_stmon; // Handle Valentine Day if (.@m >=.valentine_stmon && .@m <= .valentine_endmon) { |