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

strange bug

foxkbt

Member
Joined
Sep 29, 2009
Messages
290
Reaction score
7
Location
Salvador
i really dont have idea the cause of this item is bugged
item.xml
<item id="11391" article="a" name="archer robe">
<attribute key="weight" value="4500" />
<attribute key="armor" value="14" />
<attribute key="slotType" value="body" />
<attribute key="skillDist" value="4" />
</item>
<item id="11392" article="a" name="archer cap">
<attribute key="weight" value="2500" />
<attribute key="armor" value="5" />
<attribute key="slotType" value="head" />
<attribute key="skillDist" value="2" />
</item>

movements.xml
<movevent type="DeEquip" itemid="11391" slot="head" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="11391" slot="head" event="function" value="onEquipItem">
<vocation id="3"/>
<vocation id="7" showInDescription="0"/>
<vocation id="11" showInDescription="0"/>
</movevent>
<movevent type="DeEquip" itemid="11392" slot="armor" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="11392" slot="armor" event="function" value="onEquipItem">
<vocation id="3"/>
<vocation id="7" showInDescription="0"/>
<vocation id="11" showInDescription="0"/>
</movevent>

My problem is that the items above are not currently the user's skill
 
Code:
	<movevent type="DeEquip" itemid="11391" slot="armor" event="function" value="onDeEquipItem"/>
	<movevent type="Equip" itemid="11391" slot="armor" event="function" value="onEquipItem">
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
		<vocation id="11" showInDescription="0"/>
	</movevent>
	<movevent type="DeEquip" itemid="11392" slot="head" event="function" value="onDeEquipItem"/>
	<movevent type="Equip" itemid="11392" slot="head" event="function" value="onEquipItem">
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
		<vocation id="11" showInDescription="0"/>
	</movevent>
 
Back
Top