hello guys i am having a problem with the clan skill list , i have an npc where i have some features reagrouped, one of these features is learn clan skills, when i press learn skills it show the list well, but when i try to push some skill to learn the window dissappear without errors in the console, this is the little code that i use for it:
else if (actualCommand.equalsIgnoreCase("learnclanskills"))
{
if (!checkLeaderConditions(player))
{
return;
}
L2VillageMasterInstance.showPledgeSkillList(player);
}
and the condition:
private static boolean checkLeaderConditions(L2PcInstance activeChar)
{
if (!activeChar.isClanLeader())
{
activeChar.sendMessage("Only clan leader can use that function.");
return false;
}
return true;
}
the npc show the skill list well but i cant select any skill because the window dissappear without errors....what i forgot? thanks in advance...
i found the solution, i will answer me:
the problem was the instancetype of my npc Script i changed the extender from L2Npc to L2NpcInstance and worked.
It doesn't say that anywhere.
https://acis.i-live.eu/index.php?topic=30.0
check it from source java file names
example in 367 ->
https://acis.i-live.eu/index.php?topic=30.255 l2bufferinstance renamed to schemebuffer | l2pcinstance renamed to player
check changeset 367 to understand
DISCORD :
https://discord.com/users/325653525793210378
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/uthciha-services
https://campsite.bio/utchihaamkt
Eldamar Don't tell me what to do, stop spamming and mind your own business, it's 2025, who's going to play your server like it's 2007, you're ridiculous.
Question
b0rto
hello guys i am having a problem with the clan skill list , i have an npc where i have some features reagrouped, one of these features is learn clan skills, when i press learn skills it show the list well, but when i try to push some skill to learn the window dissappear without errors in the console, this is the little code that i use for it:
and the condition:
the npc show the skill list well but i cant select any skill because the window dissappear without errors....what i forgot? thanks in advance...
i found the solution, i will answer me:
the problem was the instancetype of my npc Script i changed the extender from L2Npc to L2NpcInstance and worked.
Edited by b0rto1 answer to this question
Recommended Posts