Refactored tools\sql\server to tools\sql\game.

This commit is contained in:
mobius
2015-01-15 16:21:59 +00:00
parent 36a8603438
commit 9ca7e86adc
113 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
DROP TABLE IF EXISTS `npc_buffer`;
CREATE TABLE `npc_buffer` (
`npc_id` int(6) NOT NULL,
`skill_id` int(6) NOT NULL,
`skill_level` int(6) NOT NULL DEFAULT '1',
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
`skill_fee_amount` int(6) NOT NULL DEFAULT '0',
`buff_group` int(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`npc_id`,`skill_id`,`buff_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `npc_buffer` VALUES
(36402,4356,3,0,0,4356),
(36402,4352,2,0,0,4352),
(36402,4345,3,0,0,4345),
(36402,4359,3,0,0,4359),
(36402,4351,6,0,0,4351),
(36402,4355,3,0,0,4355),
(36402,4357,2,0,0,4357),
(36402,4342,2,0,0,4342),
(36402,4358,3,0,0,4358),
(36402,4360,3,0,0,4360);