View Single Post
  #2  
Old 05-16-2008, 12:22 PM
Theeper
Discordant
 
Join Date: May 2004
Posts: 290
Default

You need to add in the aa_swarmpets table with this (I believe it's current) ..

Code:
CREATE TABLE `aa_swarmpets` (
  `spell_id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  `count` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  `npc_id` int(11) NOT NULL DEFAULT '0',
  `duration` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  PRIMARY KEY  (`spell_id`)
) TYPE=MyISAM;
Also, you should post support questions in the support sections. That's why it says Do not post support topics here.
Reply With Quote