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

items not showing increase ment why not?

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
This item dosent show the shielding and axe skill increase why not?


<item id="112" name="Donated axe V2">
<attribute key="description" value="You feel a surging energyflow, it greatly improves ur shielding skill!"/>
<attribute key="weight" value="5200"/>
<attribute key="defense" value="15000"/>
<attribute key="attack" value="45000"/>
<attribute key="skillShield" value="45"/>
<attribute key="skillAxe" value="45"/>
<attribute key="weaponType" value="axe"/>
<attribute key="attackSpeed" value="500"/>
<attribute key="elementIce" value="10"/>
<attribute key="showattributes" value="1"/>
</item>
 
what do i add like this?
<movevent type="Equip" itemid="111" slot="hand" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="111" slot="hand" event="function" value="onDeEquipItem"/>
 

Code:
	<movevent type="Equip" itemid="111" slot="hand" event="function" value="onEquipItem">
		<vocation id="1"/>
		<vocation id="4" showInDescription="0"/>
		<vocation id="2"/>
		<vocation id="8" showInDescription="0"/>
	</movevent>
	<movevent type="DeEquip" itemid="111" slot="hand" event="function" value="onDeEquipItem"/>
 
It will only show "only paladins can use this", its implied that royal paladins can use it and show its not showed. I would have imagined you could figure that out but I guess not
 
Seems like you have a High Exp server, maybe your axe skill is that high that it's not shown when a higher skill is added ( ex: your axe skill is 200, the item you're using adds 45 , the axe bar only accepts till 200 so it's not shown at the bar, but the skills ARE incremented anyways. )
 
Last edited:
Back
Top