This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Dumping structure for table acore_world.areatrigger | |
DROP TABLE IF EXISTS `areatrigger`; | |
CREATE TABLE IF NOT EXISTS `areatrigger` ( | |
`entry` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
`map` int(10) unsigned NOT NULL DEFAULT '0', | |
`x` float NOT NULL DEFAULT '0', | |
`y` float NOT NULL DEFAULT '0', | |
`z` float NOT NULL DEFAULT '0', | |
`radius` float NOT NULL DEFAULT '0' COMMENT 'Seems to be a box of size yards with center at x,y,z', | |
`length` float NOT NULL DEFAULT '0' COMMENT 'Most commonly used when size is 0, but not always', |