Page 1 of 1

MultisellData Problem

Posted: Wed Sep 04, 2013 8:26 pm
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>

Re: MultisellData Problem

Posted: Wed Sep 04, 2013 9:02 pm
by Zoey76
<npc>8889-1</npc> ?

Re: MultisellData Problem

Posted: Wed Sep 04, 2013 9:27 pm
by Grim
Zoey76 wrote:<npc>8889-1</npc> ?
Typing error sry..

its 8889

Re: MultisellData Problem

Posted: Wed Sep 04, 2013 11:20 pm
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."