Jump to content

What is the exact cause?


Yun_kr

Recommended Posts

Pick one and your guess would be as good as any!
 

// Checks for armor set for the equipped chest.
if (!ArmorSetsData.getInstance().isArmorSet(chest.getId()))
{
       player.sendMessage("Error: You can't visualize current set.");
       useVoicedCommand("dress-armorpage", player, args);
       return false;
}

L2ArmorSet armoSet = ArmorSetsData.getInstance().getSet(chest.getId());
if ((armoSet == null) || !armoSet.containAll(player))
{
       player.sendMessage("Error: You can't visualize, set is not complete.");
       useVoicedCommand("dress-armorpage", player, args);
       return false;
}

if (!chest.getArmorItem().getItemType().getDescription().equals(dress.getType()))
{
       player.sendMessage("Error: You can't visualize current set.");
       useVoicedCommand("dress-armorpage", player, args);
       return false;
}



 

4 hours ago, Yun_kr said:

You can't visualize current set.

sunrise pack

1726446858630.jpg

 

Edited by Salty Mike
Link to comment
Share on other sites

if (!ArmorSetsData.getInstance().isArmorSet(chest.getId()))

{

       player.sendMessage("Error: You can't visualize current set.");

       useVoicedCommand("dress-armorpage", player, args);

       return false;

}

 

 

 

What is the solution?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...