Jump to content
  • 0

[Requesting Help] Problem when I try to implant a Skill


Question

Posted

Hello men.

 

I'm working on a L2J Gracia part 2 Server. I use the Datapack revision number 5987

 

Lately, I tried to implant 80+ skills like Protection of Rune /Alignment / Elemental

 

After making one skill (Protection of Rune) , I wanted to implant it . So I updated the skill_tree table in order to add it for all players who are 81+ (cost only One SP, it's just a test) but the NPC say "There is no other skills to learn"

 

So i tried to add the skill manually with the //add_skill command. I got the system message "Error : no such skill exists"

 

I restarted the server, I checked my xml files, and everything seems to work I don't have any Error logs in the Gameserver Console when I start it

 

So I wonder what I did wrong or what I've forgotten

 

 

Thanks a lot for your help, I hope I'm in the right section

 

Ptitlaby

9 answers to this question

Recommended Posts

  • 0
Posted

Ok, Here is the xml :

 

<skill id="755" levels="1" name="Protection of Rune">
  <set name="operateType" val="OP_PASSIVE"/>
  <set name="skillType" val="BUFF"/>
  <set name="target" val="TARGET_SELF"/>
   <for>
    <mul order="0x30" stat="mDef" val="1.15"/>
    <effect name="ChanceSkillTrigger" time="10" val="0" triggeredId="5556" chanceType="ON_ATTACKED" activationChance="10"/>
  </for>
</skill>

 

And Here is the skill_trees table

 

 

This skill launch the trigger skill 5556, I give it to you too

 

<skill id="5556" levels="1" name="Protection of Rune">
  <set name="operateType" val="OP_PASSIVE"/>
  <set name="skillType" val="BUFF"/>
  <set name="target" val="TARGET_SELF"/>
   <for>
    <add order="0x40" stat="fireVuln" val="20"/>
<add order="0x40" stat="waterVuln" val="20"/>
<add order="0x40" stat="windVuln" val="20"/>
<add order="0x40" stat="earthVuln" val="20"/>
<add order="0x40" stat="holyVuln" val="20"/>
<add order="0x40" stat="darkVuln" val="20"/>
<add order="0x40" stat="mDef" val="1000""/>
   </for>
</skill>

 

And the SQL table . I put only the end of the table because the file is too long, you could see the whole table here

 

DROP TABLE IF EXISTS `skill_trees`;
CREATE TABLE `skill_trees` (
  `class_id` int(10) unsigned NOT NULL default '0',
  `skill_id` int(10) unsigned NOT NULL default '0',
  `level` int(10) unsigned NOT NULL default '0',
  `name` varchar(40) NOT NULL default '',
  `sp` int(10) unsigned NOT NULL default '0',
  `min_level` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY (`class_id`,`skill_id`,`level`)
);

-- GLOSSARY FOR CLASS ID'S (Created by Mr_Pleb_Mgoo), Updated by DJ MELERIX

-- HUMANS
-- 0=Human Fighter        | 1=Warrior       | 2=Gladiator        | 3=Warlord  | 4=Human Knight   | 5=Paladin
-- 6=Dark Avenger         | 7=Rogue         | 8=Treasure Hunter  | 9=Hawkeye  | 10=Human Mystic  | 11=Wizard
-- 12=Sorcerer/ss         | 13=Necromancer  | 14=Warlock         | 15=Cleric  | 16=Bishop        | 17=Prophet

-- ELVES
-- 18=Elven Fighter       | 19=Elven Knight   | 20=Temple Knight  | 21=Swordsinger   | 22=Elven Scout
-- 23=Plains Walker       | 24=Silver Ranger  | 25=Elven Mystic   | 26=Elven Wizard  | 27=SpellSinger
-- 28=Elemental Summoner  | 29=Elven Oracle   | 30=Elven Elder

-- DARK ELVES
-- 31=Dark Fighter        | 32=Palus Knight     | 33=Shillien Knight  | 34=BladeDancer  | 35=Assassin
-- 36=Abyss Walker        | 37=Phantom Ranger   | 38=Dark Mystic      | 39=Dark Wizard  | 40=SpellHowler
-- 41=Phantom Summoner    | 42=Shillien Oracle  | 43=Shillien Elder

-- ORCS
-- 44=Orc Fighter         | 45=Orc Raider  | 46=Destroyer  | 47=Monk  | 48=Tyrant  | 49=Orc Mystic  | 50=Orc Shaman
-- 51=Overlord            | 52=Warcryer

-- DWARVES
-- 53=Dwarven Fighter     | 54=Scavenger  | 55=Bounty Hunter  | 56=Artisan  | 57=Warsmith

-- HUMANS 3rd Professions
-- 88=Duelist             | 89=DreadNought  | 90=Phoenix Knight  | 91=Hell Knight  | 92=Sagittarius  | 93=Adventurer
-- 94=ArchMage            | 95=Soultaker    | 96=Arcana Lord     | 97=Cardinal     | 98=HieroPhant

-- ELVES 3rd Professions
-- 99=Evas Templar        | 100=Sword Muse  | 101=Wind Rider  | 102=Moonlight Sentinel  | 103=Mystic Muse
-- 104=Elemental Master   | 105=Evas Saint

-- DARK ELVES 3rd Professions
-- 106=Shillien Templar   | 107=Spectral Dancer  | 108=Ghost Hunter  | 109=Ghost Sentinel  | 110=Storm Screamer
-- 111=Spectral Master    | 112=Shillien Saint

-- ORCS 3rd Professions
-- 113=Titan              | 114=Grand Khavatari  | 115=Dominator  | 116=Doomcryer

-- DWARVES 3rd Professions
-- 117=Fortune Seeker     | 118=Maestro

-- KAMAELS
-- 123=Male Soldier       | 124=Female Soldier       | 125=Trooper     | 126=Warder       | 127=Berserker
-- 128=Male Soul Breaker  | 129=Female Soul Breaker  | 130=Arbalester  | 131=Doombringer  | 132=Male Soul Hound
-- 133=Female Soul Hound  | 134=Trickster            | 135=Inspector   | 136=Judicator



-- Protection of Rune (Test)
(88,755,1,'Protection of Rune',160,81),
(89,755,1,'Protection of Rune',160,81),
(90,755,1,'Protection of Rune',160,81),
(91,755,1,'Protection of Rune',160,81),
(92,755,1,'Protection of Rune',160,81),
(93,755,1,'Protection of Rune',160,81),
(94,755,1,'Protection of Rune',160,81),
(95,755,1,'Protection of Rune',160,81),
(96,755,1,'Protection of Rune',160,81),
(97,755,1,'Protection of Rune',160,81),
(98,755,1,'Protection of Rune',160,81),
(99,755,1,'Protection of Rune',160,81),
(100,755,1,'Protection of Rune',160,81),
(101,755,1,'Protection of Rune',160,81),
(102,755,1,'Protection of Rune',160,81),
(103,755,1,'Protection of Rune',160,81),
(104,755,1,'Protection of Rune',160,81),
(105,755,1,'Protection of Rune',160,81),
(106,755,1,'Protection of Rune',160,81),
(107,755,1,'Protection of Rune',160,81),
(108,755,1,'Protection of Rune',160,81),
(109,755,1,'Protection of Rune',160,81),
(110,755,1,'Protection of Rune',160,81),
(111,755,1,'Protection of Rune',160,81),
(112,755,1,'Protection of Rune',160,81),
(113,755,1,'Protection of Rune',160,81),
(114,755,1,'Protection of Rune',160,81),
(115,755,1,'Protection of Rune',160,81),
(116,755,1,'Protection of Rune',160,81),
(117,755,1,'Protection of Rune',160,81),
(118,755,1,'Protection of Rune',160,81),
(119,755,1,'Protection of Rune',160,81),
(120,755,1,'Protection of Rune',160,81),
(121,755,1,'Protection of Rune',160,81),
(122,755,1,'Protection of Rune',160,81),
(123,755,1,'Protection of Rune',160,81),
(124,755,1,'Protection of Rune',160,81),
(125,755,1,'Protection of Rune',160,81),
(126,755,1,'Protection of Rune',160,81),
(127,755,1,'Protection of Rune',160,81),
(128,755,1,'Protection of Rune',160,81),
(129,755,1,'Protection of Rune',160,81),
(130,755,1,'Protection of Rune',160,81),
(131,755,1,'Protection of Rune',160,81),
(132,755,1,'Protection of Rune',160,81),
(133,755,1,'Protection of Rune',160,81),
(134,755,1,'Protection of Rune',160,81),
(135,755,1,'Protection of Rune',160,81),
(136,755,1,'Protection of Rune',160,81),


  • 0
Posted

It has to work 100%.I wonder where your error is.. Humm.. Check you skill_trees again if they are there. Also,it has to add it even without skill trees with //add_skill 755 .. You sure XML is in the /skill/ folder? To be sure , go IG and press ALT+G then type the skill name , use Search SKILL and if it finds it .. No probs but if it don't check everything again.No way ,it has to add it.

  • 0
Posted

why you want do it??? i think its not necessary.... put in the gm shop or in some mobs to drop the books for lvl 81 skills... the player give double click on the books and learn the skills.

  • 0
Posted

There is the problem, books don't work anymore and I'm still searching why, I did a "back up" erasing all my work but there is no new effect

  • 0
Posted

LoL how your datapack is 5987 if the last stable datapack is the 5290 and the last core stable version is 5288 (or gamesaver 1.2.11 loginserver 1.2.0)????? In this versions the skills lvl 81 are working with the books. The last unstable datapack is 5907 i think you are wrong or Im fool.

  • 0
Posted

There is n o problem, and a friend found my error today :  I use "name=chantetriggerskill" and this command doesn't exist with the Core I use, I made a custom mix with Gracia Final Core

 

Thanks all for your help, I close the topic

Guest
This topic is now closed to further replies.


  • Posts

    • corruption made this server become empty from 3rd day,only few randoms playing.
    • ▬▬▬▬▬▬▬▬▬▬▬▬▬ஜ۩۞۩ஜ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ▓▓▓▓▓▓▓▓▓▒▒▒░░░ REVERSECODE-TEAM ░░░▒▒▒▓▓▓▓▓▓▓▓▓▓▓ ▬▬▬▬▬▬▬▬▬▬▬▬▬ஜ۩۞۩ஜ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ l2off-gracia-final [PTS] L2server.exe x64  added support  windows 10  !!! added protocol  20 support !!! added protocol  87 support !!! added protocol 152 support !!! all support protocol 20,83,87,152 fix key start server !!! fix .txt !!! fix .bak !!! fix Malloc - ??? fix Bit flag !!!  fix spam no error airship move !!! VIDEO TEST PROTOCOL  87 LINK - https://goo.su/Mhazfmz < VIDEO TEST PROTOCOL 152 LINK - https://goo.su/8rPanR  < ▬▬▬▬▬▬▬▬▬▬▬▬▬ஜ۩۞۩ஜ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ▬▬▬▬▬▬▬▬▬▬▬▬▬ஜ۩۞۩ஜ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬  the work will continue - THIS EXAMPLE ! ✯✯✯✯✯✯✯✯✯✯✯✯ UPDATE ✯✯✯✯✯✯✯✯✯✯✯✯✯✯ LINEAGE2 ESSENCE HIGH-ELVES 464 EU  [Date 23.04.2024][LANG:EUROPE-ORIGINAL] Clean System Patch Lineage 2 L2exe + Core.dll + Engine.dll unpacked*super clean 100% [unpacked REVERSECODE-TEAM ] [ Kill game guard ][ Kill FROST ] [ Kill AwesomiumProcess ] [SELL WTS PM ME ]       VIDEO GAME TEST LINK - https://goo.su/lFp327N   <   VIDEO DEVMODE LINK -  https://goo.su/yjAVk   < DEVMODE - works tested 100% pv+sv+nv ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ ✯✯✯✯✯✯✯✯✯✯✯✯ UPDATE ✯✯✯✯✯✯✯✯✯✯✯✯✯✯ LINEAGE2 MAIN SHIELD OF THE KINGDOM 474-EU [Date 30.07.2024][LANG:EUROPE-ORIGINAL] Clean System Patch Lineage 2 L2exe + Core.dll + Engine.dll unpacked*super clean 100% [LobbyMapChange added config Switch.ini] [unpacked REVERSECODE-TEAM ] [ Kill game guard ][ Kill FROST ] [ Kill AwesomiumProcess ][ LCID FIX ] [SELL WTS PM ME ]   VIDEO DEVMODE LINK - https://goo.su/jxQmAk   < DEVMODE - works tested 100% pv+sv+nv ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯  VIDEO DEVMODE LINK -  https://goo.su/43WKOD < DEVMODE - works tested 100% pv+sv+nv ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ ✯✯✯✯✯✯✯✯✯✯✯✯ UPDATE ✯✯✯✯✯✯✯✯✯✯✯✯✯✯ LINEAGE2 [MAIN] SUPERION 502 EU [UPDATE 13.01.2025][LANG:EUROPE-ORIGINAL] Clean System Patch Lineage 2 L2exe + Core.dll + Engine.dll unpacked*super clean 100% [unpacked REVERSECODE-TEAM ] [ Kill game guard ][ Kill FROST ] [ Kill AwesomiumProcess ] [SELL WTS PM ME ] VIDEO TEST LINK - https://goo.su/jmFi8H8  ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ ✯✯✯✯✯✯✯✯✯✯✯✯ UPDATE ✯✯✯✯✯✯✯✯✯✯✯✯✯✯ LINEAGE2 ESSENCE TYPE-PTS2 WARG 507 EU [Date 26.03.2025][LANG:EUROPE-ORIGINAL] Clean System Patch Lineage 2 Core.dll + Engine.dll unpacked*super clean 100% [unpacked REVERSECODE-TEAM ] [ Kill game guard ][ Kill FROST ] [ Kill AwesomiumProcess ][patched] [SELL WTS PM ME ] VIDEO GAME TEST LINK - https://goo.su/0rTsCUJ  <  VIDEO DEVMODE LINK -   https://goo.su/F1qrx   < [DEVMODE full fixed x3 classic,aden,main,all commands work] adapting to the new version DEVMODE full fixed x3 classic,aden,main works tested 100% pv+sv+nv All buttons and all commands work.  VIDEO SPECIAL DEVMODE LINK - - https://goo.su/85YbU   < ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ ✯✯✯✯✯✯✯✯✯✯✯ UPDATE ✯✯✯✯✯✯✯✯✯✯✯✯✯✯ [MAIN] LINEAGE2 Cold Witch 516 KR  [UPDATE 01.04.2025][LANG:KOREAN-ORIGINAL] Clean System Patch Lineage 2 Core.dll + Engine.dll unpacked*super clean 100% [unpacked  RED-TEAM REVERSECODE-TEAM ] [ Kill game guard ][ Kill FROST ] [ Kill AwesomiumProcess ] [SELL WTS PM ME ][DEVMODE-BETA] VIDEO GAME TEST LINK  - https://goo.su/yotKnWL  < VIDEO DEVMODE TEST GAME  - https://goo.su/08UnUHN < DEVMODE - works tested 100% pv+sv+nv ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ ✯✯✯✯✯✯✯✯✯✯✯✯ UPDATE ✯✯✯✯✯✯✯✯✯✯✯✯✯✯ LINEAGE2 ESSENCE WOLF 507 EU [UPDATE 29.04.2025][LANG:EUROPE-ORIGINAL] [patched] Clean System Patch Lineage 2  Core.dll + Engine.dll unpacked*super clean 100% [unpacked REVERSECODE-TEAM ] [ Kill game guard ][ Kill FROST ] [ Kill AwesomiumProcess ] [SELL WTS PM ME ] VIDEO~OFFICIAL 4GAME TEST - https://goo.su/UrZhe < VIDEO~ADMIN NEVER DIE ^_^ - https://goo.su/sL5Eok < DEVMODE VIDEO MAPS WOLF - https://goo.su/xhgEfI  < ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ in my profile there is a link to my discord group  we write all the questions there - if you are interested in something ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯  REVERSECODE-TEAM  Service Creating Full Clean Patched Systems  Unreal Scripts / Reverse Enginering / Game Client Modifications Portfolio Discord Group https://discord.gg/56EuZyFJj2   ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ DO NOT LEAVE POSTS IN THIS SECTION  IF YOU HAVE ANY QUESTIONS, CONTACT US IN THE DISCORD AND ASK YOUR QUESTIONS ( prices are shown in green text in the first post ) Anyone who leaves a message in this section will be denied services and the post will be deleted. [  A large selection of Products In our group at the link in the Discord   ]          
    • it's great that you know who these files come from... you shouldn't forget vanganth too! now it is very easy, you take my last revision of svn and compare it against those files.... when you finish analyzing and comparing you should do the following... which will be very easy to check...   once everything is checked, analyze what did L2Devs do hahaha   I who give away the files, make me problem. L2Devs is SCAMMING people, selling something free and you don't say anything... It is something very strange what happens .... Besides you ripped me off 100usd, but I hope you got server to eat at least. PD: the day you take it back and return my 100usd I will forgive you and pretend that nothing ever happened 😉
    • 🔥 Apresentação I present to you a new fully customized DressMe system, developed for DreamV2, inspired by the best servers and enhanced with unique features that guarantee performance, customization and stunning visuals. ✨ Funcionalidades ✅ Aplicação de visual de armas e armaduras sem alterar o item real equipado. ✅ Compatível com qualquer tipo de arma/armadura (ex: skins de bow visíveis apenas com bows equipados). ✅ Remoção automática do visual quando parte do set real é desequipada. ✅ Efeitos visuais (skills) aplicados com suporte a: Aplicação única ou recorrente Intervalo configurável via XML Remoção automática ao desativar o visual ✅ Interface limpa e lógica modular, fácil de expandir com novos visuais ou efeitos.     <?xml version="1.0" encoding="UTF-8"?> <dressMeList> <dress skillId="9100" name="Draconic Armor" type="ARMOR" isVip="false" > <visualSet chest="6379" legs="0" gloves="6380" feet="6381" helmet="6841" /> <visualEffect skillId="445" level="1" recurring="true" interval="35" /> </dress> <dress skillId="9102" name="Cloak Style Armor" type="CLOAK" isVip="false"> <visualSet chest="7000" legs="0" gloves="0" feet="0" helmet="0" /> <visualEffect skillId="10005" level="1" recurring="false" /> </dress> <dress skillId="9103" name="Valakas Style Weapon" type="WEAPON" isVip="false"> <visualWep type="bow" rhand="7575" lhand="0" lrhand="0" /> <visualEffect skillId="10005" level="1" recurring="false" /> </dress> </dressMeList> 📸 Imagens & Vídeo 🛠️ Detalhes Técnicos Desenvolvido com base no L2J DreamV2 Integração direta com L2PcInstance, Inventory, ThreadPoolManager e SkillTable Sistema de gerenciamento central via DressMeEffectManager Agendamento e cancelamento seguro de efeitos recorrentes Totalmente thread-safe e compatível com jogadores offline 📂 Instalação A instalação é feita via patch e inclui: Classes: DressMeHolder, DressMeEffectManager, modificações em L2PcInstance XML de exemplo Suporte completo à expansão por armas, cloaks e visuais parciais 📎 Download https://pastebin.com/raw/7i843yKh 💬 Feedback & Sugestões Sinta-se à vontade para comentar abaixo com sugestões, dúvidas ou feedbacks. Toda contribuição é bem-vinda para futuras versões!
    • @Tinker123aa Guytis, I have nothing against you, but it's very clear to me who is behind this files. I'm talking about the one that came with the captcha anti-bot system. I personally bought it from the real owner, who was one of the administrators of L2Gold.cc. This can be confirmed by him if he wishes. 😊 Maybe you worked on the files, but they didn’t start from you.   To the people trying to buy the files I’m just advising you not to waste your money. This is 100% verified information.   I honestly don't know how people believe you. 🙂 I'll share the link to the guy's topic below.   ps  
  • 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