Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

Back-to:WorldThe `game_event` table

Table: game_event

This table is contains definitions for all game events that are activated or deactivated automatically by the Game Event System in the core.

Structure

Field

Type

Attributes

Key

Null

Default

Extra

Comment

Game event tc2

tinyint(3)

unsigned

PRI

NO

 

Unique

Entry of the game event

Game event tc2

timestamp

signed

 

NO

0000-00-00 00:00:00

 

Absolute start date, the event will never start before

Game event tc2

timestamp

signed

 

NO

0000-00-00 00:00:00

 

Absolute end date, the event will never start after

Game event tc2

bigint(20)

unsigned

 

NO

5184000

 

Delay in minutes between occurences of the event

Game event tc2

bigint(20)

unsigned

 

NO

2592000

 

Length in minutes of the event

Game event tc2

mediumint(8)

unsigned

 

NO

0

 

Client side holiday id

Game event tc2

varchar(255)

signed

 

YES

NULL

 

Description of the event displayed in console

Game event tc2

tinyint(3)

unsigned

 

NO

0

 

0 if normal event, 1 if world event

Description of the fields

eventEntry

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.

...