upon inserting new tables you should have these 4 storage
and NPC works fine with me
in your inter_server.yml dont change the 1st line of storage
should always like this
Header:
Type: INTER_SERVER_DB
Version: 1
Body:
- ID: 0 // Done change this
Name: "Storage" // Done change this
Table: storage // Done change this
- ID: 1
Name: "VIP"
Table: storage2
max: 300
- ID: 2
Name: "VIP2"
Table: storage3
max: 300
- ID: 3
Name: "VIP3"
Table: storage4
max: 300
Footer:
Imports:
- Path: conf/import/inter_server.yml
If you want more storage for VIP etc just add same line shown below
- ID: 4
Name: "VIP4"
Table: storage5
max: 300
as for the DB insert table show be like this shown below
--
-- Table structure for table `storage`
--
CREATE TABLE IF NOT EXISTS `storage5` (
`id` int(11) unsigned NOT NULL auto_increment,
`account_id` int(11) unsigned NOT NULL default '0',
`nameid` int(10) unsigned NOT NULL default '0',
`amount` smallint(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` int(10) unsigned NOT NULL default '0',
`card1` int(10) unsigned NOT NULL default '0',
`card2` int(10) unsigned NOT NULL default '0',
`card3` int(10) unsigned NOT NULL default '0',
`option_id0` smallint(5) NOT NULL default '0',
`option_val0` smallint(5) NOT NULL default '0',
`option_parm0` tinyint(3) NOT NULL default '0',
`option_id1` smallint(5) NOT NULL default '0',
`option_val1` smallint(5) NOT NULL default '0',
`option_parm1` tinyint(3) NOT NULL default '0',
`option_id2` smallint(5) NOT NULL default '0',
`option_val2` smallint(5) NOT NULL default '0',
`option_parm2` tinyint(3) NOT NULL default '0',
`option_id3` smallint(5) NOT NULL default '0',
`option_val3` smallint(5) NOT NULL default '0',
`option_parm3` tinyint(3) NOT NULL default '0',
`option_id4` smallint(5) NOT NULL default '0',
`option_val4` smallint(5) NOT NULL default '0',
`option_parm4` tinyint(3) 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',
`enchantgrade` tinyint unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `account_id` (`account_id`)
) ENGINE=MyISAM;