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);