• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

NpcSystem: Parameter(s) missing for items: nil nil

Joined
Mar 14, 2020
Messages
139
Solutions
3
Reaction score
11
I have this warning in my console and i dont know how to solve:

1608831788677.png

The NPC work's. He sell the item, its fine, but why this warning?

PS: Already tried put Mining Crystal Pickaxe, 37598, 5000000,1/0; still not working

NPC xml:


Lua:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Mineiro" script="mineiro.lua" walkinterval="2000" floorchange="0">
    <health now="100" max="100" />
    <look type="160" head="116" body="60" legs="76" feet="95" />
    <parameters>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. Say {mining} for more info or {trade} to buy a especial pickaxe!"/>
        <parameter key="module_shop" value="1" />
        <parameter key="shop_buyable" value="
            Mining Crystal Pickaxe, 37598, 5000000;
            "/>
    </parameters>
</npc>
 
Solution
I have this warning in my console and i dont know how to solve:

View attachment 52918

The NPC work's. He sell the item, its fine, but why this warning?

PS: Already tried put Mining Crystal Pickaxe, 37598, 5000000,1/0; still not working

NPC xml:


Lua:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Mineiro" script="mineiro.lua" walkinterval="2000" floorchange="0">
    <health now="100" max="100" />
    <look type="160" head="116" body="60" legs="76" feet="95" />
    <parameters>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. Say {mining} for more info or {trade} to buy a especial pickaxe!"/>
        <parameter key="module_shop" value="1" />
        <parameter key="shop_buyable" value="
            Mining...
I have this warning in my console and i dont know how to solve:

View attachment 52918

The NPC work's. He sell the item, its fine, but why this warning?

PS: Already tried put Mining Crystal Pickaxe, 37598, 5000000,1/0; still not working

NPC xml:


Lua:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Mineiro" script="mineiro.lua" walkinterval="2000" floorchange="0">
    <health now="100" max="100" />
    <look type="160" head="116" body="60" legs="76" feet="95" />
    <parameters>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. Say {mining} for more info or {trade} to buy a especial pickaxe!"/>
        <parameter key="module_shop" value="1" />
        <parameter key="shop_buyable" value="
            Mining Crystal Pickaxe, 37598, 5000000;
            "/>
    </parameters>
</npc>
remove spaces:

Lua:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Mineiro" script="mineiro.lua" walkinterval="2000" floorchange="0">
    <health now="100" max="100" />
    <look type="160" head="116" body="60" legs="76" feet="95" />
    <parameters>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. Say {mining} for more info or {trade} to buy a especial pickaxe!"/>
        <parameter key="module_shop" value="1" />
        <parameter key="shop_buyable" value="Mining Crystal Pickaxe, 37598, 5000000;"/>
    </parameters>
</npc>
 
Solution
remove spaces:

Lua:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Mineiro" script="mineiro.lua" walkinterval="2000" floorchange="0">
    <health now="100" max="100" />
    <look type="160" head="116" body="60" legs="76" feet="95" />
    <parameters>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. Say {mining} for more info or {trade} to buy a especial pickaxe!"/>
        <parameter key="module_shop" value="1" />
        <parameter key="shop_buyable" value="Mining Crystal Pickaxe, 37598, 5000000;"/>
    </parameters>
</npc>
worked ty
 
Back
Top