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

soft and rings reputing

Calon

Experienced Member
Joined
Feb 6, 2009
Messages
1,070
Reaction score
21
i got a problem with rings and soft boots

it works but when the player logout and for example the soft boot in the feet, he should reput the soft to makes it work.

what is the problem here ?
 
seems like a onEquip or onDeEquip problem, you have this in movements.xml?
Code:
	<movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem"/>
	<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/>
or in items.xml for 6132:
<attribute key="transformEquipTo" value="2640"/>
maybe this post:
http://otland.net/f35/onequip-ondeequip-properly-handled-login-logout-116948/
 
Back
Top