diff options
author | Emistry <Equinox1991@gmail.com> | 2015-10-27 18:31:29 +0800 |
---|---|---|
committer | Emistry <Equinox1991@gmail.com> | 2015-10-27 18:31:29 +0800 |
commit | 3bd77ffc0daca508352834add828766490075aee (patch) | |
tree | b6d2b9f8e02c2c993985908a9406ae9f72685f75 /db/const.txt | |
parent | 415114467ab6bcac45e66031993e33f1a68a3255 (diff) | |
download | hercules-3bd77ffc0daca508352834add828766490075aee.tar.gz hercules-3bd77ffc0daca508352834add828766490075aee.tar.bz2 hercules-3bd77ffc0daca508352834add828766490075aee.tar.xz hercules-3bd77ffc0daca508352834add828766490075aee.zip |
Replaced parameter type with constant.
constant for gettime( <type> )
constant for Weekday and Month.
Diffstat (limited to 'db/const.txt')
-rw-r--r-- | db/const.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/db/const.txt b/db/const.txt index 8ee4fd84b..ca78c223d 100644 --- a/db/const.txt +++ b/db/const.txt @@ -3398,3 +3398,36 @@ MOUNT_DRAGON_BROWN 5 MOUNT_DRAGON_GRAY 6 MOUNT_DRAGON_BLUE 7 MOUNT_DRAGON_RED 8 + +// gettime( <param> ) +SECOND 1 +MINUTE 2 +HOUR 3 +WEEKDAY 4 +DAYOFMONTH 5 +MONTH 6 +YEAR 7 +DAYOFYEAR 8 + +// Weekday +SUNDAY 0 +MONDAY 1 +TUESDAY 2 +WEDNESDAY 3 +THURSDAY 4 +FRIDAY 5 +SATURDAY 6 + +// Month +JANUARY 1 +FEBRUARY 2 +MARCH 3 +APRIL 4 +MAY 5 +JUNE 6 +JULY 7 +AUGUST 8 +SEPTEMBER 9 +OCTOBER 10 +NOVEMBER 11 +DECEMBER 12 |