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.
Discord : utchiha_market
Telegram : https://t.me/utchiha_market
Auto Buy Store : https://utchihamkt.mysellauth.com/
Not sure if we’re legit? Check Our server — real reviews, real buyers
https://discord.gg/uthciha-servicess | https://campsite.bio/utchihaamkt
Discord : utchiha_market
Telegram : https://t.me/utchiha_market
Auto Buy Store : https://utchihamkt.mysellauth.com/
Not sure if we’re legit? Check Our server — real reviews, real buyers
https://discord.gg/uthciha-servicess | https://campsite.bio/utchihaamkt
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