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>
MultisellData Problem
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 23
- Joined: Tue Jul 23, 2013 12:57 am
MultisellData Problem
Last edited by Grim on Wed Sep 04, 2013 9:27 pm, edited 1 time in total.
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: MultisellData Problem
<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! 

-
- Posts: 23
- Joined: Tue Jul 23, 2013 12:57 am
Re: MultisellData Problem
Typing error sry..Zoey76 wrote:<npc>8889-1</npc> ?
its 8889
- lucan
- Posts: 590
- Joined: Wed Mar 16, 2011 10:39 pm
- Location: Brazil
Re: MultisellData Problem
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."
<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."