Core/Scripts/SmartAI: added SmartAI files

Core/DBLayer/Texts: added CreatureTextMgr files
BuildSystem: added cmake for above files
Note: these are still under development and NOT USABLE
should not effect anything now

--HG--
branch : trunk
This commit is contained in:
Rat
2010-09-25 18:47:03 +02:00
parent 562e3955a9
commit 28e90bbb60
10 changed files with 758 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
DROP TABLE IF EXISTS `creature_text`;
CREATE TABLE `creature_text` (
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
`id` tinyint(3) unsigned NOT NULL DEFAULT '0',
`text` longtext,
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`language` tinyint(3) unsigned NOT NULL DEFAULT '0',
`probability` float NOT NULL DEFAULT '0',
`emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
`duration` mediumint(8) unsigned NOT NULL DEFAULT '0',
`sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
`comment` varchar(255) DEFAULT '',
PRIMARY KEY (`entry`,`groupid`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;