Page 1 of 1

Error: MultisellData: Cannot find list ID

Posted: Fri Feb 12, 2016 5:17 am
by dakpower
Hi, I have a problem to add npc custom (not load xml)
Error: MultisellData: Cannot find list ID


game\data\multisell\custom

Code: Select all

<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/multisell.xsd">

  <npcs>
    <npc>100002</npc> 
  </npcs>

  <!-- Forgotten Blade - Focus -->
  <item id="1">
    <ingredient id="57" count="500000000" enchant="0"/>
    <production id="6583" count="1" enchant="0"/>
  </item>

</list>
//# have Custom Components (ALL --> TRUE)

in \game\data\stats\npcs\custom\custom.xml

Code: Select all

	<npc id="100002" displayId="103" name="GM*SHOP" usingServerSideName="true" title="L2Hobby" usingServerSideTitle="true" type="L2Merchant">
		<collision>
			<radius normal="8.00" />
			<height normal="24.00" />
		</collision>
	</npc>

Re: Error: MultisellData: Cannot find list ID

Posted: Fri Feb 12, 2016 3:39 pm
by Amrod
your ingredients look a bit weird. And you miss the whole line on the top.
Do I understand you right that you want to Exchange a Short Sword and 500000000 to get 1 Forgotten Blade Focus?
If so try this one:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../../xsd/multisell.xsd">
	<npcs>
		<npc>100002</npc> <!-- GM*Shop -->
	</npcs>
	<item>
		<!-- Adena -->
		<ingredient count="500000000" id="57" />
		<!-- Short Sword -->
		<ingredient count="1" id="1" />
		<!-- Forgotten Blade - Focus -->
		<production count="1" id="6583" />
	</item>
</list>