Jump to content
  • 0

Buffer Problem


Question

7 answers to this question

Recommended Posts

  • 0
Posted

/*

L2J-Archid Alternative Buffer

*/

 

SET FOREIGN_KEY_CHECKS=0;

DROP TABLE IF EXISTS `Npc_Buffer`;

CREATE TABLE `Buffer` (

  `npc_id` int(5) NOT NULL,

  `skill_id` int(5) NOT NULL,

  `skill_level` int(5) NOT NULL default '1',

  `skill_fee_id` int(5) NOT NULL default '0',

  `skill_fee_amount` int(5) NOT NULL default '0',

  PRIMARY KEY  (`npc_id`,`skill_id`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8;

 

-- ----------------------------

-- Records

-- ----------------------------

INSERT INTO Npc_Buffer

  (`npc_id`, `skill_id`, `skill_level`, `skill_fee_id`, `skill_fee_amount`)

VALUES

  (51, 264, 1, 57, 100),

  (51, 265, 1, 57, 100),

  (51, 266, 1, 57, 100),

  (51, 267, 1, 57, 100),

  (51, 268, 1, 57, 100),

  (51, 269, 1, 57, 100),

  (51, 270, 1, 57, 100),

  (51, 271, 1, 57, 100),

  (51, 272, 1, 57, 100),

  (51, 273, 1, 57, 100),

  (51, 274, 1, 57, 100),

  (51, 275, 1, 57, 100),

  (51, 276, 1, 57, 100),

  (51, 277, 1, 57, 100),

  (51, 304, 1, 57, 100),

  (51, 305, 1, 57, 100),

  (51, 306, 1, 57, 100),

  (51, 307, 1, 57, 100),

  (51, 308, 1, 57, 100),

  (51, 309, 1, 57, 100),

  (51, 310, 1, 57, 100),

  (51, 311, 1, 57, 100),

  (51, 349, 1, 57, 100),

  (51, 363, 1, 57, 100),

  (51, 364, 1, 57, 100),

  (51, 365, 1, 57, 100),

  (51, 366, 1, 57, 100),

  (51, 1355, 1, 57, 100),

  (51, 1356, 1, 57, 100),

  (51, 1357, 1, 57, 100),

  (51, 1363, 1, 57, 100),

  (51, 1413, 1, 57, 100),

  (51, 4342, 2, 57, 100),

  (51, 4343, 3, 57, 100),

  (51, 4344, 3, 57, 100),

  (51, 4345, 3, 57, 100),

  (51, 4346, 4, 57, 100),

  (51, 4347, 6, 57, 100),

  (51, 4348, 6, 57, 100),

  (51, 4349, 2, 57, 100),

  (51, 4350, 4, 57, 100),

  (51, 4351, 6, 57, 100),

  (51, 4352, 2, 57, 100),

  (51, 4353, 6, 57, 100),

  (51, 4354, 4, 57, 100),

  (51, 4355, 3, 57, 100),

  (51, 4356, 3, 57, 100),

  (51, 4357, 2, 57, 100),

  (51, 4358, 3, 57, 100),

  (51, 4359, 3, 57, 100),

  (51, 4360, 3, 57, 100);

 

  • 0
Posted

Για δοκιμασε αυτο :

 

/*
L2J-Archid Alternative Buffer
*/

SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `Npc_Buffer`;
CREATE TABLE `Npc_Buffer` (
  `npc_id` int(5) NOT NULL,
  `skill_id` int(5) NOT NULL,
  `skill_level` int(5) NOT NULL default '1',
  `skill_fee_id` int(5) NOT NULL default '0',
  `skill_fee_amount` int(5) NOT NULL default '0',
  PRIMARY KEY  (`npc_id`,`skill_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records 
-- ----------------------------
INSERT INTO Npc_Buffer
   (`npc_id`, `skill_id`, `skill_level`, `skill_fee_id`, `skill_fee_amount`)
VALUES
   (51, 264, 1, 57, 100),
   (51, 265, 1, 57, 100),
   (51, 266, 1, 57, 100),
   (51, 267, 1, 57, 100),
   (51, 268, 1, 57, 100),
   (51, 269, 1, 57, 100),
   (51, 270, 1, 57, 100),
   (51, 271, 1, 57, 100),
   (51, 272, 1, 57, 100),
   (51, 273, 1, 57, 100),
   (51, 274, 1, 57, 100),
   (51, 275, 1, 57, 100),
   (51, 276, 1, 57, 100),
   (51, 277, 1, 57, 100),
   (51, 304, 1, 57, 100),
   (51, 305, 1, 57, 100),
   (51, 306, 1, 57, 100),
   (51, 307, 1, 57, 100),
   (51, 308, 1, 57, 100),
   (51, 309, 1, 57, 100),
   (51, 310, 1, 57, 100),
   (51, 311, 1, 57, 100),
   (51, 349, 1, 57, 100),
   (51, 363, 1, 57, 100),
   (51, 364, 1, 57, 100),
   (51, 365, 1, 57, 100),
   (51, 366, 1, 57, 100),
   (51, 1355, 1, 57, 100),
   (51, 1356, 1, 57, 100),
   (51, 1357, 1, 57, 100),
   (51, 1363, 1, 57, 100),
   (51, 1413, 1, 57, 100),
   (51, 4342, 2, 57, 100),
   (51, 4343, 3, 57, 100),
   (51, 4344, 3, 57, 100),
   (51, 4345, 3, 57, 100),
   (51, 4346, 4, 57, 100),
   (51, 4347, 6, 57, 100),
   (51, 4348, 6, 57, 100),
   (51, 4349, 2, 57, 100),
   (51, 4350, 4, 57, 100),
   (51, 4351, 6, 57, 100),
   (51, 4352, 2, 57, 100),
   (51, 4353, 6, 57, 100),
   (51, 4354, 4, 57, 100),
   (51, 4355, 3, 57, 100),
   (51, 4356, 3, 57, 100),
   (51, 4357, 2, 57, 100),
   (51, 4358, 3, 57, 100),
   (51, 4359, 3, 57, 100),
   (51, 4360, 3, 57, 100);

 

Kαντο execute και μετα πατα ενα refresh.

BTW στο SQL του NPC σου βγαζει error?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...