View Single Post
  #4  
Old 09-18-2004, 05:04 PM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

You're missing the charges column in your items table. This MySQL command should fix you up, provided there are no other columns missing:

ALTER TABLE `items` ADD `charges` INT(11) DEFAULT "0" NOT NULL AFTER `casttime2`;
Reply With Quote