Versiones comparadas

Clave

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

...

Field

Type

Attributes

Key

Null

Default

Extra

Comment

entry eventEntry

mediumint tinyint(83)

unsigned

PRI

NO

NULL   

Unique

Entry of the game event

start_time

timestamp

signed

 

NO

0000-00-00 00:00:00

 

Absolute start date, the event will never start before

end_time

timestamp

signed

 

NO

0000-00-00 00:00:00

 

Absolute end date, the event will never start after

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

description

varchar(255)

signed

 

YES

NULL

 

Description of the event displayed in console

world_event

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.

...