I have a problem with guild storage. Some of my players says that their guild storage is 0/600.
I just check my sql database of `guild_storage` but it's empty. All the items that they stored are not listed on this table. Please help me I'm using ramod.
CREATE TABLE IF NOT EXISTS `guild_storage` (
`id` int(10) unsigned NOT NULL auto_increment,
`guild_id` int(11) unsigned NOT NULL default '0',
`nameid` int(11) unsigned NOT NULL default '0',
`amount` int(11) unsigned NOT NULL default '0',
`equip` int(11) unsigned NOT NULL default '0',
`identify` smallint(6) unsigned NOT NULL default '0',
`refine` tinyint(3) unsigned NOT NULL default '0',
`attribute` tinyint(4) unsigned NOT NULL default '0',
`card0` smallint(11) NOT NULL default '0',
`card1` smallint(11) NOT NULL default '0',
`card2` smallint(11) NOT NULL default '0',
`card3` smallint(11) NOT NULL default '0',
`expire_time` int(11) unsigned NOT NULL default '0',
`bound` tinyint(3) unsigned NOT NULL default '0',
`unique_id` bigint(20) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `guild_id` (`guild_id`)
) ENGINE=MyISAM;
Question
nasagnilac
I have a problem with guild storage. Some of my players says that their guild storage is 0/600.
I just check my sql database of `guild_storage` but it's empty. All the items that they stored are not listed on this table. Please help me I'm using ramod.
Link to comment
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.