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.
I usually use the layer mask with a soft brush and low opacity to blend edges better, especially around hair or fuzzy stuff—it keeps things smooth without cutting too sharp.
He's a reseller. I recommend you don’t get PTS files from him. there are more skilled people on this forum.
personally sold him files and fixes. The screenshot says it all.
I sold him files and fixes, and then with just a couple of words he said he wouldn’t resell them 🙂 Since he can’t handle the server files properly, he prefers to give them away or sell them for nothing.
jerk
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