Jump to content

sammysam

Members
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

Community Answers

  1. sammysam's post in Making Starting Items Equipable was marked as the answer   
    anyone know how to make jewels equipable? I added them to char_templates but they come on ur inventory and not equipped.
     
     
    edit: found it, if anyone wanna know how to equip jewels on new char (l2jfrozen)
    if (item.isEquipable())                 if (newChar.getActiveWeaponItem() == null || !(item.getItem().getType2() != L2Item.TYPE2_WEAPON) ||  (item.getItem().getBodyPart() & L2Item.SLOT_NECK) > 0 || (item.getItem().getBodyPart() & L2Item.SLOT_L_EAR) > 0 || (item.getItem().getBodyPart() & L2Item.SLOT_R_EAR) > 0 || (item.getItem().getBodyPart() & L2Item.SLOT_L_FINGER) > 0 || (item.getItem().getBodyPart() & L2Item.SLOT_R_FINGER) > 0)                     newChar.getInventory().equipItemAndRecord(item);
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..