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
NPC PROBLEM XML
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- lucan
- Posts: 590
- Joined: Wed Mar 16, 2011 10:39 pm
- Location: Brazil
Re: NPC PROBLEM XML
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
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
Last edited by lucan on Mon Aug 26, 2013 10:36 am, edited 1 time in total.
-
- L2j Veteran
- Posts: 1228
- Joined: Thu Jan 17, 2013 9:46 am
Re: NPC PROBLEM XML
Don't forget to allow custom multisell load...
- lucan
- Posts: 590
- Joined: Wed Mar 16, 2011 10:39 pm
- Location: Brazil
Re: NPC PROBLEM XML
Yes! I forgot to remember this.xban1x wrote:Don't forget to allow custom multisell load...
In General.properties
# Default: False
CustomMultisellLoad = True
- Konstantinos
- Posts: 501
- Joined: Wed Feb 08, 2012 12:19 pm
Re: NPC PROBLEM XML
use the custom multisell folder like i said but yes enable it 1st



-
- Posts: 23
- Joined: Tue Jul 23, 2013 12:57 am
Re: NPC PROBLEM XML
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>
<?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>
-
- Posts: 23
- Joined: Tue Jul 23, 2013 12:57 am
Re: NPC PROBLEM XML
already didxban1x wrote:Don't forget to allow custom multisell load...