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

Windows MOVEMENTS.xml problem---help!

Kibidon777

New Member
Joined
Oct 16, 2011
Messages
68
Reaction score
0
Okay, well my Legendary Legs work and can be equipped in the leg slot, and the item id of my Legendary Armor is 9777.

Code:
	<movevent type="Equip" itemid="9776" slot="armor" level="20" event="function" value="onEquipItem">
		<vocation id="5"/>
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="3"/>
		<vocation id="4"/>
		<vocation id="6"/>
		<vocation id="7"/>
		<vocation id="8"/>
		<vocation id="9"/>
		<vocation id="10"/>
		<vocation id="11"/>
		<vocation id="12"/>
	</movevent>
	<movevent type="DeEquip" itemid="9776" slot="armor" event="function" value="onDeEquipItem"/>

It am using 0.3.6pl. Tibia 8.54. When I try to equip it to armor slot, doesn't work. But it will go into sword or shield slot?!

Please help.

Thanks,
Kibidon
 
if the id is 9777 then change the id in the script here i did it for you.
<movevent type="Equip" itemid="9777" slot="armor" level="20" event="function" value="onEquipItem">
<vocation id="5"/>
<vocation id="1"/>
<vocation id="2"/>
<vocation id="3"/>
<vocation id="4"/>
<vocation id="6"/>
<vocation id="7"/>
<vocation id="8"/>
<vocation id="9"/>
<vocation id="10"/>
<vocation id="11"/>
<vocation id="12"/>
</movevent>
<movevent type="DeEquip" itemid="9777" slot="armor" event="function" value="onDeEquipItem"/>
 
Back
Top