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

Itemattributes Problem SVN 3.7 8.60

arthurluna

Member
Joined
Apr 12, 2008
Messages
178
Reaction score
12
Sem título.png

All Source SVN 0.3.7 8.60 until 10:10 are with this problem "Physical +" ...
Does anyone have a solution?
 
Fire Sword
(Atk: 24 + 11 fire, Def: 20 +1).
It can only be wielded properly by players of level 30 or higher.
It weighs 23.00 oz.
The blade is a magic flame.

Fire Axe
(Atk: 27 + 11 fire, Def: 16 +1).
It can only be wielded properly by players of level 35 or higher.
It weighs 40.00 oz.
The blade is a magic flame.
 
They are right!

The problem is in the source 0.3.7 - 8.60 to 10.x

Code:
 <item id="2392" article="a" name="fire sword">
        <attribute key="description" value="The blade is a magic flame."/>
        <attribute key="weight" value="2300"/>
        <attribute key="attack" value="24"/>
        <attribute key="defense" value="20"/>
        <attribute key="elementFire" value="11"/>
        <attribute key="weaponType" value="sword"/>
        <attribute key="extradef" value="1"/>
    </item>

    <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="27"/>
        <attribute key="elementFire" value="11"/>
        <attribute key="weaponType" value="axe"/>
        <attribute key="extradef" value="1"/>
    </item>
 
Back
Top