NO EXIST TABLE DROP ITEM HEAD
#1


2013/05/23 06:01:20 :: SYSTEM > Apet Loading...

2013/05/23 06:01:20 :: SYSTEM > Skill Loading...

2013/05/23 06:01:21 :: SYSTEM > Npc Loading...

2013/05/23 06:01:21 :: SYSTEM > Quest Loading...

2013/05/23 06:01:21 :: SYSTEM > Reward Loading...

2013/05/23 06:01:21 :: SYSTEM > Event Automation Loading...

2013/05/23 06:01:21 :: SYSTEM > Drop List Loading...

2013/05/23 06:01:21 :: EVENT_AUTOMATION_WARN > NO EXIST TABLE DROP ITEM HEAD

2013/05/23 06:01:21 :: Setting Error!! >

 

How fix this ?

 

 

#2

 

 

DROP TABLE IF EXISTS `t_drop_item_head`;
CREATE TABLE `t_drop_item_head` (
  `a_drop_idx` int(10) NOT NULL AUTO_INCREMENT,
  `a_desc` varchar(50) DEFAULT desc,
  `a_drop_type` int(10) DEFAULT 0,
  `a_level_mini` int(10) DEFAULT 6,
  `a_level_maxi` int(10) DEFAULT 6,
  `a_prob` int(10) DEFAULT -1,
  `a_prob_level` int(10) DEFAULT 0,
  `a_npc_type_party` int(11) DEFAULT 1,
  `a_npc_type_boss` int(11) DEFAULT 1,
  `a_npc` varchar(50) DEFAULT ,
  `a_level_section` varchar(255) DEFAULT ,
  PRIMARY KEY (`a_drop_idx`),
  KEY `a_drop_idx` (`a_drop_idx`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
 

 

#3
Thanks for the quick help ! Smile



Forum Jump:


Users browsing this thread: 1 Guest(s)