Jump to content
  • 0

Buffer Problem


Question

Posted

EleoC Re Paidia Ston Oneo Dn M Douleuei O Buffer Ala3a Pack Evala Tou Archid Kai Dn Mou Ton Pernaei Stin Database!!!! Help Dild

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

Paidia Protimo Na Exo To Archid Alla opws sas eipa dn m pernaei tin buffer stn database...An EinaI Kapoios!

  • 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?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • L2Elixir – Patch 4 Is Live!   We’re working non-stop, day and night, to deliver the best possible quality and bring back what made L2Elixir special. This project is built with passion, not shortcuts — for the old-school players who remember, and the new ones who want to experience it properly. Thank you for being part of the journey. Together, we’re making L2Elixir great again ❤️ The legends never fade.    ⚙️ General Enabled Class Change service (same class type only) ALT + B → Services → Character Development Enabled Shift + Click on Treasure Chests Players can now identify real chests (Adena, scroll drops) and use Key / Unlock Event deaths now cancel only debuffs, All self buffs are preserved, fixes issues with Root and similar effects Bladedancer class can now log in even when Max Clients (2) is reached. Since an active Bladedancer is not available for every damage dealer and some players tried to abuse this via VPN or a second PC, this feature was added to keep things fair. protections applies, requires testing!    🎒 Items Crystallizing enchanted items now gives the correct increased crystal amount (retail-like behavior) Removed Agathion Seal Bracelet: Rudolph from Santa rewards (Gracia Final item) Added Dualsword Craft Stamp into Milestone Exchange list    🧙 Skills Fixed Banish Undead lethal chance Hot Springs Malaria and similar effects now level up faster while being attacked
    • thats new SEO level tricks you know nothing of noob - bottom line: exposed.
    • Warning: This guy is a big scammer, trying to sell everything, advertising for servers etc. That's his mail address evgesha.nrnr@gmail.com , stay away!   @Atom @Celestine
    • Warning: This guy is a big scammer, trying to sell everything, advertising for servers etc. That's his mail address evgesha.nrnr@gmail.com , stay away! @Celestine @Atom
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock