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

TFS 1.X+ Items xml tfs 1.2

abdala ragab

Veteran OT User
Joined
Aug 18, 2018
Messages
461
Solutions
11
Reaction score
340
Location
gamelaot.sytes.net
Ima Use Tfs 1.2 And I got this error when i load items
Can someone tell me how I can fix it?

[Warning - Items::parseItemNode] Unknown key value: increaseMagicPercent
[Warning - Items::parseItemNode] Unknown floorChange: southEx
[Warning - Items::parseItemNode] Unknown floorChange: eastEx
[Warning - Items::parseItemNode] Unknown key value: transformUseTo
[Warning - Items::parseItemNode] Unknown key value: text
[Warning - Items::parseItemNode] Unknown key value: breakChance
[Warning - Items::parseItemNode] Unknown key value: ammoAction
[Warning - Items::parseItemNode] Unknown key value: specialDoor
[Warning - Items::parseItemNode] Unknown key value: closingDoor
[Warning - Items::parseItemNode] Unknown key value: preventDrop
 
Solution
I have never seen this, but this function does not have it in its source, u would have to compile a new function, or to fix the problem try removing or replacing it with other defaults.

increaseMagicPercent
XML:
<attribute key="magiclevelpoints" value="1" />
transformUseTo
XML:
<attribute key="decayTo" value="1234" />
ammoAction
XML:
<attribute key="slotType" value="ammo" />

breakChance
chance of breaking must be configured in weapons.xml

XML:
<item id="2389" article="a" name="spear">
        <attribute key="weight" value="2000" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="distance" />
        <!--removed-->
        <attribute key="shootType" value="spear" />
        <attribute...
I have never seen this, but this function does not have it in its source, u would have to compile a new function, or to fix the problem try removing or replacing it with other defaults.

increaseMagicPercent
XML:
<attribute key="magiclevelpoints" value="1" />
transformUseTo
XML:
<attribute key="decayTo" value="1234" />
ammoAction
XML:
<attribute key="slotType" value="ammo" />

breakChance
chance of breaking must be configured in weapons.xml

XML:
<item id="2389" article="a" name="spear">
        <attribute key="weight" value="2000" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="distance" />
        <!--removed-->
        <attribute key="shootType" value="spear" />
        <attribute key="maxHitChance" value="76" />
        <attribute key="range" value="3" />
    </item>

other functions must be done or be in movements.xml
 
Last edited:
Solution
magiclevelpoints give magic level i need items give Dmg
Post automatically merged:

<attribute key="ammoAction" value="removecount"/>
I have never seen this, but this function does not have it in its source, u would have to compile a new function, or to fix the problem try removing or replacing it with other defaults.

increaseMagicPercent
XML:
<attribute key="magiclevelpoints" value="1" />
transformUseTo
XML:
<attribute key="decayTo" value="1234" />
ammoAction
XML:
<attribute key="slotType" value="ammo" />

breakChance
chance of breaking must be configured in weapons.xml

XML:
<item id="2389" article="a" name="spear">
        <attribute key="weight" value="2000" />
        <attribute key="attack" value="25" />
        <attribute key="weaponType" value="distance" />
        <!--removed-->
        <attribute key="shootType" value="spear" />
        <attribute key="maxHitChance" value="76" />
        <attribute key="range" value="3" />
    </item>

other functions must be done or be in movements.xml
<attribute key="ammoAction" value="removecount"/>
How can I change this line?
Post automatically merged:

[Warning - Items::parseItemNode] Unknown key value: text
[Warning - Items::parseItemNode] Unknown key value: specialDoor
[Warning - Items::parseItemNode] Unknown key value: closingDoor
[Warning - Items::parseItemNode] Unknown key value: preventDrop
[Warning - Items::parseItemNode] Unknown key value: worth
[Warning - Items::parseItemNode] Unknown key value: cache


You didn't tell me about these errors
 
Last edited:
Back
Top