mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
Code and concept (also known as EventAI) by ScriptDev2. Note: database table layout are compatible with original db-scripts.
22 lines
791 B
SQL
22 lines
791 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_7622_02_mangos_creature_ai_summons required_7622_03_mangos_creature_ai_texts bit;
|
|
|
|
|
|
DROP TABLE IF EXISTS `creature_ai_texts`;
|
|
CREATE TABLE `creature_ai_texts` (
|
|
`entry` mediumint(8) NOT NULL,
|
|
`content_default` text NOT NULL,
|
|
`content_loc1` text,
|
|
`content_loc2` text,
|
|
`content_loc3` text,
|
|
`content_loc4` text,
|
|
`content_loc5` text,
|
|
`content_loc6` text,
|
|
`content_loc7` text,
|
|
`content_loc8` text,
|
|
`sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
`language` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
`emote` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|
`comment` text,
|
|
PRIMARY KEY (`entry`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
|