![]() |
|
NO EXIST TABLE DROP ITEM HEAD - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193) +---- Forum: Help & Support (https://lckb.dev/forum/forumdisplay.php?fid=157) +----- Forum: Ep2 Support (https://lckb.dev/forum/forumdisplay.php?fid=166) +------ Forum: Solved Topics (https://lckb.dev/forum/forumdisplay.php?fid=144) +------ Thread: NO EXIST TABLE DROP ITEM HEAD (/showthread.php?tid=1944) |
- DerGraf - 05-23-2013 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 ? - DrGenius - 05-23-2013 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; - DerGraf - 05-23-2013 Thanks for the quick help ! ![]() |