-
Notifications
You must be signed in to change notification settings - Fork 48
Game_event
Back to world database list of tables.
This table is contains definitions for all game events that are activated or deactivated automatically by the Game Event System in the core.
Field | Type | Null | Key | Default | Extra |
entry | mediumint(8) unsigned | NO | PRI | ||
start_time | timestamp | NO | 0000-00-00 00:00:00 | ||
end_time | timestamp | NO | 0000-00-00 00:00:00 | ||
occurence | bigint(20) unsigned | NO | 5184000 | ||
length | bigint(20) unsigned | NO | 2592000 | ||
description | varchar(255) | YES | None |
Entry of the event. Keep it as low as possible and prevent making holes in the list. Higher the max id is, the more memory will be used to store the event data.
Absolute start date of the event. The event will start occurring only if the local time at the server is after the one set here.
Absolute end date of the event. The event will stop occurring if the local time at the server is after the one set here.
Number of minutes between 2 occurrences of the event. (2880 = 2 days, 1440 = 1 day, etc)
Number of minutes the event will last after the start of the occurrence. (2880 = 2 days, 1440 = 1 day, etc) This value must be lower than occurrence one or the event will never stop.
String containing the name of the event displayed in console each time it starts or stops.