Im trying to find a way to change the skill description for example when a character have 1kkk adenas..
example:
adena < 1kkk
adena >= 1kkk
I have to create one more skill like hydro in skillname-e with the new description?
if yes how can i switch the link to appear the new skill?
ive searched in enchantskill file how the icon is replacing but i didnt get what i need because this is for changing the whole icon (+1 etc)...
for (L2ShortCut sc : activeChar.getAllShortCuts())
{
if (sc.getId() == _skillId && sc.getType() == L2ShortCut.TYPE_SKILL)
{
L2ShortCut newsc = new L2ShortCut(sc.getSlot(), sc.getPage(), L2ShortCut.TYPE_SKILL, _skillId, _skillLevel, 1);
activeChar.sendPacket(new ShortCutRegister(newsc));
activeChar.registerShortCut(newsc);
}
}
Edit: if i have to do the same as any enchanted skill with the new description i have to change enchant_skills_tree and plus one more enchant for all those skills?
⏳ L2Elixir Open Beta goes live in less than 4 hours!
This Saturday, November 15th at 21:00 (UTC +2), the gates open for our biggest testing phase!
🔥 Don’t miss the first 30 minutes — exclusive rewards await!
A special NPC, “The Judge”, will appear in Giran, offering unique bonuses to early participants:
🏅 Open Beta Rewards:
- The first 2 players who talk to The Judge → Premium Account for Launch
- Another 2 random players who interact → Premium Account
- Everyone who speaks to the NPC within the first 30 minutes → Legendary Starter Pack for all characters on launch day (Nov 28th, 2025)
📌 The NPC will spawn exactly at 21:00 (UTC+2).
⏱️ Follow the countdown on our website — the hype is real!
Create your account & download the Updater to be ready!
🔗 https://l2elixir.org/connect/
💬 Discord: https://discord.gg/5ydPHvhbxs
Question
melron
Hello there,
Im trying to find a way to change the skill description for example when a character have 1kkk adenas..
example:
adena < 1kkk
adena >= 1kkk
I have to create one more skill like hydro in skillname-e with the new description?
if yes how can i switch the link to appear the new skill?
ive searched in enchantskill file how the icon is replacing but i didnt get what i need because this is for changing the whole icon (+1 etc)...
for (L2ShortCut sc : activeChar.getAllShortCuts()) { if (sc.getId() == _skillId && sc.getType() == L2ShortCut.TYPE_SKILL) { L2ShortCut newsc = new L2ShortCut(sc.getSlot(), sc.getPage(), L2ShortCut.TYPE_SKILL, _skillId, _skillLevel, 1); activeChar.sendPacket(new ShortCutRegister(newsc)); activeChar.registerShortCut(newsc); } }Edit: if i have to do the same as any enchanted skill with the new description i have to change enchant_skills_tree and plus one more enchant for all those skills?
Any suggestion?
Edited by melron4 answers to this question
Recommended Posts