mirror of
https://github.com/mangosfour/server.git
synced 2025-12-23 16:37:03 +00:00
Code and concept (also known as EventAI) by ScriptDev2. Note: database table layout are compatible with original db-scripts.
14 lines
No EOL
708 B
SQL
14 lines
No EOL
708 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_7622_01_mangos_creature_ai_scripts required_7622_02_mangos_creature_ai_summons bit;
|
|
|
|
|
|
DROP TABLE IF EXISTS `creature_ai_summons`;
|
|
CREATE TABLE `creature_ai_summons` (
|
|
`id` int(11) unsigned NOT NULL COMMENT 'Location Identifier' AUTO_INCREMENT,
|
|
`position_x` float NOT NULL default '0',
|
|
`position_y` float NOT NULL default '0',
|
|
`position_z` float NOT NULL default '0',
|
|
`orientation` float NOT NULL default '0',
|
|
`spawntimesecs` int(11) unsigned NOT NULL default '120',
|
|
`comment` varchar(255) NOT NULL default '' COMMENT 'Summon Comment',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations'; |