Page 1 of 1

NPC PROBLEM XML

Posted: Mon Aug 26, 2013 9:24 am
by Grim
L2J Revision 6169:
L2JDP Revision 9918:

Hello. guys where i must put the multisell from gm shop when i add it to server... i spawn it i target it and when i try buy anythink nothink happens and on gs console i see the error MultisellData : can't find list ID: 9130 Requested by Grimplayer: Grim, npcid: 8889

Re: NPC PROBLEM XML

Posted: Mon Aug 26, 2013 10:21 am
by lucan
Custom XML should be in the folder /data/multisell/custom

And try put in the top of 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> <!-- Your NPC GM Shop ID Here -->
</npcs>


See other multisell XML to see how it should be

Re: NPC PROBLEM XML

Posted: Mon Aug 26, 2013 10:31 am
by xban1x
Don't forget to allow custom multisell load...

Re: NPC PROBLEM XML

Posted: Mon Aug 26, 2013 10:38 am
by lucan
xban1x wrote:Don't forget to allow custom multisell load...
Yes! I forgot to remember this.
In General.properties

# Default: False
CustomMultisellLoad = True

Re: NPC PROBLEM XML

Posted: Mon Aug 26, 2013 10:53 am
by Konstantinos
use the custom multisell folder like i said but yes enable it 1st 8) :?

Re: NPC PROBLEM XML

Posted: Mon Aug 26, 2013 11:11 am
by Grim
should look like

<?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>
<!-- D-Grade Armors -->

<list>

<!-- Brigandine Heavy Armor -->
<item id="1">
<ingredient id="57" count="1000000"/>
<production id="352" count="1"/>
<production id="2378" count="1"/>
<production id="2411" count="1"/>
<production id="2425" count="1"/>
<production id="2449" count="1"/>
<production id="2493" count="1"/>
</item>

Re: NPC PROBLEM XML

Posted: Mon Aug 26, 2013 11:12 am
by Grim
xban1x wrote:Don't forget to allow custom multisell load...
already did