MultisellData Problem

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
Grim
Posts: 23
Joined: Tue Jul 23, 2013 12:57 am

MultisellData Problem

Post by Grim »

L2J Revision 6202:
L2JDP Revision 9944:

Still cant find out how to fix the xmls from gmshop.. i read all L2Jserver forum and nothink i am trying everythink and i still have problem..

When GameServer Console load i have the following error : MultisellData: Could not parse 9114.xml file: cvc-complextype.2.4.a : Invalid content was found starting with element 'production' . One of '<ingredients>' is expected.

When i spawn the npc and try to buy somethink i have problem In GameServer Console it says : MultisellData: can't find list id: 9114 requested by player Grim, npcId: 8889

I have CustomMultisell : True in configs
And this is my xml :

<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/multisell.xsd">
<npcs>
<npc>8889</npc>
</npcs>
<item>
<production id="352" count="1" />
<ingredient id="57" count="5000000" />
</item>
</list>
Last edited by Grim on Wed Sep 04, 2013 9:27 pm, edited 1 time in total.
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: MultisellData Problem

Post by Zoey76 »

<npc>8889-1</npc> ?
Powered by Eclipse 4.34 ๐ŸŒŒ | Eclipse Temurin 21 โ˜• | MariaDB 11.3.2 ๐Ÿ—ƒ๏ธ | L2J Server 2.6.3.0 - High Five ๐Ÿš€

๐Ÿ”— Join our Discord! ๐ŸŽฎ๐Ÿ’ฌ
Grim
Posts: 23
Joined: Tue Jul 23, 2013 12:57 am

Re: MultisellData Problem

Post by Grim »

Zoey76 wrote:<npc>8889-1</npc> ?
Typing error sry..

its 8889
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: MultisellData Problem

Post by lucan »

Invert position...

<item>
<production id="352" count="1" />
<ingredient id="57" count="5000000" />
</item>

to...

<item>
<ingredient id="57" count="5000000" />
<production id="352" count="1" />
</item>

"Invalid content was found starting with element 'production' . One of '<ingredients>' is expected."
Post Reply