--HG--
branch : trunk
This commit is contained in:
QAston
2009-07-18 23:41:42 +02:00
15 changed files with 264 additions and 21 deletions

View File

@@ -0,0 +1 @@
UPDATE `creature_template` SET `ScriptName`='mob_mojo' WHERE `entry`='24480';

View File

@@ -0,0 +1,14 @@
-- ----------------------------
-- Table structure for channels
-- ----------------------------
DROP TABLE IF EXISTS `channels`;
CREATE TABLE `channels` (
`m_name` text NOT NULL,
`m_team` int(10) unsigned NOT NULL,
`m_ownerGUID` int(11) unsigned NOT NULL default '0',
`m_announce` tinyint(1) unsigned NOT NULL default '0',
`m_moderate` tinyint(1) unsigned NOT NULL default '0',
`m_password` text,
`BannedList` longtext,
PRIMARY KEY (`m_name`(10),`m_team`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Access Requirements';