в эту таблику нужно записывать? DROP TABLE IF EXISTS `z_queued_items`;
CREATE TABLE `z_queued_items` ( `id` bigint(255) NOT NULL AUTO_INCREMENT, `char_id` varchar(35) NOT NULL DEFAULT '', `name` varchar(24) NOT NULL DEFAULT '', `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `item_id` smallint(5) unsigned NOT NULL DEFAULT '0', `item_count` bigint(20) unsigned NOT NULL DEFAULT '0', `item_ench` smallint(5) unsigned NOT NULL DEFAULT '0', `aug_id` int(11) NOT NULL DEFAULT '0', `aug_lvl` int(11) NOT NULL DEFAULT '0', `status` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;