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

Can use some items how to fix?

Byllan

Member
Joined
Dec 29, 2009
Messages
1,079
Reaction score
12
Location
SWEDEN
I can't use Focus Cape and Robe of underworld in my server how to fix it?
 
Add these to the specific item id:

Code:
<item id="8890" article="a" name="robe of the underworld">
	<attribute key="weight" value="3100"/>
	<attribute key="armor" value="12"/>
	<attribute key="slotType" value="body"/>
	<attribute key="absorbPercentDeath" value="12"/>
	<attribute key="absorbPercentHoly" value="-12"/>
	<attribute key="magicpoints" value="5"/>
</item>
<item id="8871" article="a" name="focus cape">
	<attribute key="weight" value="2100"/>
	<attribute key="armor" value="9"/>
	<attribute key="slotType" value="body"/>
	<attribute key="magicpoints" value="1"/>
</item>
 
Back
Top