Enchanted item in multisell

MrTitan

Knight
Customer
Is it possible to add enchanted item in the multisell like this example?
<item id="1">
<ingredient id="57" count="1000"/>
<production id="7577" count="1" enchant="12"/>
</item>
 
Is it possible to add enchanted item in the multisell like this example?
<item id="1">
<ingredient id="57" count="1000"/>
<production id="7577" count="1" enchant="12"/>
</item>
Hello dear,
I have the same problem checking enchanted ingredients in multisell, at the moment the system is ignoring the required enchantment and making the exchange


my multisell
<?xml version='1.0' encoding='utf-8'?>
<list>
<config showall="true" notax="false" ignoreprice="false" enchantCheck="true" keepenchanted="false" />

<item id="1"><!-- [Aden Scroll Chest] -->
<ingredient id="15577" count="50"/> <!-- [clan coin] -->
<ingredient id="-100" count="50"/> <!-- [pc bang points] -->
<production id="70907" count="1"/> <!-- [Aden Scroll Chest] -->
</item>
<item id="2"><!-- [Aden Cloak Lv1] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92001" count="1"/><!-- [Aden Cloak Lv1 +0] -->
</item>
<item id="3"><!-- [Aden Cloak Lv2] -->
<ingredient id="92001" count="1" enchant="10"/><!-- [Aden Cloak Lv1 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92012" count="1" enchant="0"/><!-- [Aden Cloak Lv2 +0] -->
</item>
<item id="4"><!-- [Aden Cloak Lv3] -->
<ingredient id="92012" count="1" enchant="10"/><!-- [Aden Cloak Lv2 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92023" count="1" enchant="0"/><!-- [Aden Cloak Lv3 +0] -->
</item>
<item id="5"><!-- [Aden Cloak Lv4] -->
<ingredient id="92023" count="1" enchant="10"/><!-- [Aden Cloak Lv3 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92034" count="1" enchant="0"/><!-- [Aden Cloak Lv4 +0] -->
</item>
<item id="6"><!-- [Aden Cloak Lv5] -->
<ingredient id="92034" count="1" enchant="10"/><!-- [Aden Cloak Lv4 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92045" count="1" enchant="0"/><!-- [Aden Cloak Lv5 +0] -->
</item>
</list>
 
Hello dear,
I have the same problem checking enchanted ingredients in multisell, at the moment the system is ignoring the required enchantment and making the exchange


my multisell
<?xml version='1.0' encoding='utf-8'?>
<list>
<config showall="true" notax="false" ignoreprice="false" enchantCheck="true" keepenchanted="false" />

<item id="1"><!-- [Aden Scroll Chest] -->
<ingredient id="15577" count="50"/> <!-- [clan coin] -->
<ingredient id="-100" count="50"/> <!-- [pc bang points] -->
<production id="70907" count="1"/> <!-- [Aden Scroll Chest] -->
</item>
<item id="2"><!-- [Aden Cloak Lv1] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92001" count="1"/><!-- [Aden Cloak Lv1 +0] -->
</item>
<item id="3"><!-- [Aden Cloak Lv2] -->
<ingredient id="92001" count="1" enchant="10"/><!-- [Aden Cloak Lv1 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92012" count="1" enchant="0"/><!-- [Aden Cloak Lv2 +0] -->
</item>
<item id="4"><!-- [Aden Cloak Lv3] -->
<ingredient id="92012" count="1" enchant="10"/><!-- [Aden Cloak Lv2 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92023" count="1" enchant="0"/><!-- [Aden Cloak Lv3 +0] -->
</item>
<item id="5"><!-- [Aden Cloak Lv4] -->
<ingredient id="92023" count="1" enchant="10"/><!-- [Aden Cloak Lv3 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92034" count="1" enchant="0"/><!-- [Aden Cloak Lv4 +0] -->
</item>
<item id="6"><!-- [Aden Cloak Lv5] -->
<ingredient id="92034" count="1" enchant="10"/><!-- [Aden Cloak Lv4 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92045" count="1" enchant="0"/><!-- [Aden Cloak Lv5 +0] -->
</item>
</list>
use this
<config showall="false" notax="false" keepenchanted="false" />

and this
<item id="3"><!-- [Aden Cloak Lv2] -->
<ingredient id="92001" count="1" enchant="10"/><!-- [Aden Cloak Lv1 +10] -->
<ingredient id="-100" count="100"/> <!-- [pc bang points] -->
<production id="92012" count="1"/><!-- [Aden Cloak Lv2 +0] -->
</item>
 
Back
Top