this the error i get when trying to import my sql dump into my database.
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE attacks2 (
id int(10) unsigned NOT NULL,
attack_name' at line 1
this is the table
CREATE TABLE `attacks2` (
`id` int(10) unsigned NOT NULL auto_increment,
`attack_name` varchar(16) NOT NULL default '',
`do_what` varchar(16) NOT NULL default '',
`magic_number` int(11) NOT NULL default '0',
`learned_by` text NOT NULL,
`learn_at_level` int(11) NOT NULL default '0',
`game` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5408;
my mysql version is: MySQL - 5.0.24-standard
my mysql dumps version: MySQL - 4.1.19