Latest beta multisell

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
kornom
Posts: 227
Joined: Thu Sep 26, 2013 3:48 pm

Latest beta multisell

Post 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?
kornom
Posts: 227
Joined: Thu Sep 26, 2013 3:48 pm

Re: Latest beta multisell

Post by kornom »

//del

Looks like new multisell on beta wont accept <item id=1> anymore.
Has to be <item>
krepstas
Posts: 57
Joined: Mon Sep 17, 2012 10:14 am

Re: Latest beta multisell

Post 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>  
darknight666
Posts: 63
Joined: Thu Jun 10, 2010 9:05 am

Re: Latest beta multisell

Post 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> 
Post Reply