“game_tele” table¶
The game_tele
table holds lists of teleport locations identified by
unique names.
Note
Teleport locations are merely an addition to ease the life of game masters and developers, allowing to quickly travel to a location instead of having to lookup the coordinates.
Table structure¶
Field | Type | Null | Key | Default | Extra |
---|---|---|---|---|---|
id | mediumint(8) unsigned | NO | PRI | NULL | auto_increment |
position_x | float | NO | 0 | ||
position_y | float | NO | 0 | ||
position_z | float | NO | 0 | ||
orientation | float | NO | 0 | ||
map | smallint(5) unsigned | NO | 0 | ||
name | varchar(100) | NO |
Fields¶
id¶
A unique identifier for the teleport location.
position_x¶
The X coordinate for the teleport location.
position_y¶
The Y coordinate for the teleport location.
position_z¶
The Z coordinate for the teleport location.
orientation¶
The orientation for the teleport location.
name¶
A unique name for the teleport location.
Note
Using spaces and special characters for locations is prohibited.