Page 1 of 1

Latest beta multisell

Posted: Tue Dec 17, 2013 5:38 am
by kornom
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?

Re: Latest beta multisell

Posted: Wed Dec 18, 2013 7:10 pm
by kornom
//del

Looks like new multisell on beta wont accept <item id=1> anymore.
Has to be <item>

Re: Latest beta multisell

Posted: Wed Dec 18, 2013 9:07 pm
by krepstas
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?
This is example for you how multisell should look in latest rev.

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>  

Re: Latest beta multisell

Posted: Fri Jan 03, 2014 6:16 pm
by darknight666

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>