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

Xivin

New Member
Joined
Mar 19, 2008
Messages
277
Reaction score
1
I am trying to customize some items on my server whenever i try to add +sword, ml, axe etc it will not work it says it when you look at items but it wont add to your skills however when i use a item that already exist with stat boosts it will work im adding the same exact
Code:
<attribute key="magiclevelpoints" value="3" />
 
Code:
  <item id="8931" article="a" name="Donation Sword">
    <attribute key="weight" value="6700" />
    <attribute key="defense" value="49" />
    <attribute key="attack" value="64" />
	<attribute key="skillSword" value="2" />
    <attribute key="weaponType" value="sword" />
    <attribute key="extradef" value="3" />
  </item>

theres one example.
 
You must register the item id on weapons.xml or movements.xml (depending whether the item is a weapon or an item you wear, for example: sword or shield) otherwise it won't work. Make sure you don't register item ids twice or it will give you error on console.
 
Back
Top