• 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!

error isPokeball

TopllDan

Football <3
Joined
May 14, 2015
Messages
66
Reaction score
0
Hello I am with this error in the distro, someone could help me pack?
I have the server source

Code:
[31/05/2015 01:27:10] [Warning - Items::loadFromXml] Unknown key value ispokeball
[31/05/2015 01:27:10] [Warning - Items::loadFromXml] Unknown key value ispokeball
[31/05/2015 01:27:10] [Warning - Items::loadFromXml] Unknown key value ispokeball
[31/05/2015 01:27:11] [Warning - Items::loadFromXml] Unknown key value ispokeball
 
Have you tried changing "ispokeball" to "isPokeball"?

It is so in items.xml, but I was told you have to add something in the
Code:
    <item id="10974" article="a" name="Bulbasaur's pokeball">
         <attribute key="ispokeball" value="1"/>
         <attribute key="weight" value="100" />
         <attribute key="slotType" value="feet" />
    </item>

    <item id="10975" article="a" name="Bulbasaur's pokeball">
         <attribute key="ispokeball" value="1"/>
         <attribute key="weight" value="100" />
         <attribute key="slotType" value="feet" />
    </item>

    <item id="10976" article="a" name="Bulbasaur's pokeball being used">
         <attribute key="ispokeball" value="1"/>
         <attribute key="weight" value="100" />
         <attribute key="slotType" value="feet" />
    </item>

    <item id="10977" article="a" name="Bulbasaur's discharged pokeball">
         <attribute key="ispokeball" value="1"/>
         <attribute key="weight" value="100" />
         <attribute key="slotType" value="feet" />
    </item>

and changing is the same thing
 
Back
Top