Clientaddons not working - HELP!

Junior Spellweaver
Joined
Jan 12, 2007
Messages
128
Reaction score
0
Query failed: SELECT * FROM clientaddons
Loading Quests...

That's what my Command Prompt says and after it attempts to load the quests, it shuts itself down.

CREATE TABLE `clientaddons` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(50) default NULL,
`crc` bigint(50) default NULL,
`banned` int(1) NOT NULL default '0',
`showinlist` int(1) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `index` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=153 DEFAULT CHARSET=latin1;

That's what I use for clientaddons.

Any suggestions?
 
Back