| 
				 very intresting doodman 
 here is a sql I did up. I was at least able to remove that error sayingat row #1 in the db. 
 # MySQL-Front 3.2  (Build 6.6)
 
 # Host: localhost    Database: dark
 # ------------------------------------------------------
 # Server version 4.0.24-nt
 
 #
 # Table structure for table object_contents
 #
 
 DROP TABLE IF EXISTS `object_contents`;
 CREATE TABLE `object_contents` (
 `zoneid` int(11) unsigned NOT NULL default '0',
 `parentid` int(11) unsigned NOT NULL default '0',
 `bagidx` int(11) unsigned NOT NULL default '0',
 `itemid` int(11) unsigned NOT NULL default '0',
 `charges` tinyint(3) NOT NULL default '0',
 `droptime` datetime NOT NULL default '0000-00-00 00:00:00',
 PRIMARY KEY  (`zoneid`,`parentid`)
 ) TYPE=MyISAM;
 
 #
 # Dumping data for table object_contents
 #
 
 INSERT INTO `object_contents` (`zoneid`,`parentid`,`bagidx`,`itemid`,`charges`,`  droptime`) VALUES (152,5001,1,38010,1,'2006-01-13 17:36:31');
 
 
 I wonder if augslot1 is not the coloum.
 will keep testing new ideas. If you know anything let me know I hope this helps you out too.
 |