Error: MultisellData: Cannot find list ID

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
dakpower
Posts: 2
Joined: Fri Feb 12, 2016 5:05 am

Error: MultisellData: Cannot find list ID

Post 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>
Amrod
Posts: 95
Joined: Wed May 04, 2011 9:12 am

Re: Error: MultisellData: Cannot find list ID

Post 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>
Post Reply