game_event - cmangos/issues GitHub Wiki
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 | PRIMARY KEY | Entry of the game event | |
schedule_type | int(11) | NO | 0 | enum GameEventScheduleType | |
occurence | bigint(20) unsigned | NO | 5184000 | Delay in minutes between occurences of the event | |
length | bigint(20) unsigned | NO | 2592000 | Length in minutes of the event | |
holiday | mediumint(8) unsigned | NO | 0 | Client side holiday id | |
linkedTo | mediumint(8) unsigned | NO | 0 | This event starts only if defined LinkedTo event is started | |
EventGroup | mediumint(8) unsigned | NO | 0 | ||
description | varchar(255) | YES | None | Description of the event displayed in console |
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.
See enum GameEventScheduleType
GAME_EVENT_SCHEDULE_SERVERSIDE = 0, // completely handled by the server - start and end
GAME_EVENT_SCHEDULE_DATE = 1, // old start and end date behaviour
GAME_EVENT_SCHEDULE_DMF_1 = 2, // first Darkmoon Faire event - first whole week of the month
GAME_EVENT_SCHEDULE_DMF_2 = 3, // second Darkmoon Faire event
GAME_EVENT_SCHEDULE_DMF_3 = 4, // third Darkmoon Faire event
GAME_EVENT_SCHEDULE_DMF_BUILDING_STAGE_1_1 = 5, // first Darkmoon Faire building event
GAME_EVENT_SCHEDULE_DMF_BUILDING_STAGE_1_2 = 6,
GAME_EVENT_SCHEDULE_DMF_BUILDING_STAGE_1_3 = 7,
GAME_EVENT_SCHEDULE_DMF_BUILDING_STAGE_2_1 = 8,
GAME_EVENT_SCHEDULE_DMF_BUILDING_STAGE_2_2 = 9,
GAME_EVENT_SCHEDULE_DMF_BUILDING_STAGE_2_3 = 10,
GAME_EVENT_SCHEDULE_YEARLY = 11,
GAME_EVENT_SCHEDULE_LUNAR_NEW_YEAR = 12,
GAME_EVENT_SCHEDULE_EASTER = 13,
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.
Holiday ID from enum HolidayIds in SharedDefines.h
Linked event which must be active for this event to be able to be activated.
Group of events, which are launched automatically daily(length=1440) or weekly(length=10080).
String containing the name of the event displayed in console each time it starts or stops.