If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:LAST
L2JDP Revision Number:LAST
Hi guyz, Im trying to upgrade from STABLE to BETA versions, I have troubles with my MULTISELL..
They work normal on stable but on beta I get:
MultisellData: Could not parse 66717.xml file: cvc-elt.1: Cannot find the declar
ation of element 'list'.
MultisellData: Could not parse 8000.xml file: cvc-elt.1: Cannot find the declara
tion of element 'list'.
MultisellData: Could not parse 9110.xml file: cvc-elt.1: Cannot find the declara
tion of element 'list'.
is there an easy fix?
Latest beta multisell
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 227
- Joined: Thu Sep 26, 2013 3:48 pm
Re: Latest beta multisell
//del
Looks like new multisell on beta wont accept <item id=1> anymore.
Has to be <item>
Looks like new multisell on beta wont accept <item id=1> anymore.
Has to be <item>
-
- Posts: 57
- Joined: Mon Sep 17, 2012 10:14 am
Re: Latest beta multisell
This is example for you how multisell should look in latest rev.kornom wrote:If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:LAST
L2JDP Revision Number:LAST
Hi guyz, Im trying to upgrade from STABLE to BETA versions, I have troubles with my MULTISELL..
They work normal on stable but on beta I get:
MultisellData: Could not parse 66717.xml file: cvc-elt.1: Cannot find the declar
ation of element 'list'.
MultisellData: Could not parse 8000.xml file: cvc-elt.1: Cannot find the declara
tion of element 'list'.
MultisellData: Could not parse 9110.xml file: cvc-elt.1: Cannot find the declara
tion of element 'list'.
is there an easy fix?
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/multisell.xsd"><npcs><npc>31377</npc> </npcs> <item> <ingredient id="7233" count="5000" /> <production id="14819" count="1" /> </item> </list>
-
- Posts: 63
- Joined: Thu Jun 10, 2010 9:05 am
Re: Latest beta multisell
Code: Select all
Index: dist/game/data/xsd/multisell.xsd===================================================================--- dist/game/data/xsd/multisell.xsd (revision 10109)+++ dist/game/data/xsd/multisell.xsd (working copy)@@ -10,7 +10,7 @@ <xs:simpleType> <xs:restriction base="xs:positiveInteger"> <xs:minInclusive value="1" /> - <xs:maxInclusive value="65535" /> + <xs:maxInclusive value="999999999999" /> </xs:restriction> </xs:simpleType> </xs:element> Index: dist/game/data/xsd/buylist.xsd===================================================================--- dist/game/data/xsd/buylist.xsd (revision 10109)+++ dist/game/data/xsd/buylist.xsd (working copy)@@ -10,7 +10,7 @@ <xs:simpleType> <xs:restriction base="xs:positiveInteger"> <xs:minInclusive value="1" />- <xs:maxInclusive value="65535" />+ <xs:maxInclusive value="999999999999" /> </xs:restriction> </xs:simpleType> </xs:element>@@ -23,7 +23,7 @@ <xs:simpleType> <xs:restriction base="xs:positiveInteger"> <xs:minInclusive value="1" />- <xs:maxInclusive value="65535" />+ <xs:maxInclusive value="999999999999" /> </xs:restriction> </xs:simpleType> </xs:attribute>