• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Custom Items

<item id="100" name="void">
</item>
<item id="101" name="earth">
</item>
<item id="102" name="grass">
</item>
<item id="103" name="dirt">
</item>
<item id="104" name="sand">
</item>
<item id="105" name="gravel">
</item>
<item id="106" name="grass">
</item>
<item id="107" name="rock soil">
</item>
<item id="108" name="flowers">
</item>
<item id="109" name="flowers">
</item>
<item id="110" name="grass">
</item>
<item id="111" name="grass">
</item>
<item id="112" name="grass">
</item>
<item id="113" name="grass">
</item>
<item id="114" name="grass">
</item>
<item id="115" name="grass">
</item>
<item id="116" name="grass">
</item>
<item id="117" name="grass">
</item>
<item id="118" name="grass">
</item>
<item id="119" name="grass">
</item>
<item id="120" name="grass">
</item>
<item id="121" name="grass">
</item>
<item id="122" name="grass">
</item>
<item id="123" name="grass">



This shit comes up
 
it's not weapon or something to change the attack
but you can change the name
<item id="100" name="void">
to
<item id="100" name="keffaly">

weapons like sov
Code:
	<item id="2400" article="a" name="magic sword">
		<attribute key="description" value="It is the Sword of Valor."/>
		<attribute key="weight" value="4200"/>
		<attribute key="defense" value="34"/>
		<attribute key="attack" value="48"/>
		<attribute key="weaponType" value="sword"/>
		<attribute key="extradef" value="3"/>
	</item>
if you want to attack change number 48 to XXX like this
Code:
	<attribute key="attack" value="48"/>
to
Code:
	<attribute key="attack" value="XXXXXXX"/>
replace XXX with the number of the attack
 
Back
Top