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

Problem with Fire Axe values

mct

New Member
Joined
May 7, 2013
Messages
54
Reaction score
0
Hi,

I have a problem with Fire Axe values.
In items.xml fire axe have Atk: 27 physical + 11 fire, Def: 16 +1

But in game, you click "look" in fire axe and have: 16 Physical +11 fire, def: 16 +1

How its possible? :/
I need change the values in other file?
 
Atk: 27 physical + 11 fire, Def: 16 +1
Should be like that with these values.
XML:
<item id="2432" article="a" name="fire axe">
        <attribute key="description" value="The blade is a magic flame." />
        <attribute key="weight" value="4000" />
        <attribute key="defense" value="16" />
        <attribute key="attack" value="38" />
        <attribute key="elementFire" value="11" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="1" />
</item>
 
Back
Top