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

item editor

Have you tried editing your items.xml?

An item editor is used to edit OTB data files, which I doubt it modifies any kind of attack, defense or other attributes. Thus, easiest way to modify those attribute is with items.xml.
 
Open the items.xml file with Notepad++ and press CTRL+F, search for the item you want to change attributes to. For example, fire sword:
04e522d73bb34b95aa517e6fa4ff9046.png


As you can see there below you have some attributes, now you can simply change the value inside value="#".
For additional attributes, you have to figure out yourself where to find. Search for similar items that might have the attributes you're looking for and copy them, here you have a post with some of them:
https://otland.net/threads/attributes-items-xml.174868/#post-1702625
 
Hey sorry I'm at work, can't always respond fast.
Anyways, open up items.xml with notepad++, then use control+f to find the weapon you want (example below, fire sword):

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="defense" value="20"/>
        <attribute key="attack" value="35"/>
        <attribute key="weaponType" value="sword"/>
    </item>

You see the attributes "attack" and "defense," change those to whatever you want.

@Dyabl0 LOL I swear it didn't copy you I just never refreshed the page xDD
 
Last edited:
Back
Top