Skip to content

Instantly share code, notes, and snippets.

View acidmanifesto's full-sized avatar
💭
All Praise MDic

M'Dic acidmanifesto

💭
All Praise MDic
View GitHub Profile
-- 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',