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

Sniper gloves adding dist skill

zakius

Enter the Ninja!
Joined
Apr 30, 2009
Messages
2,635
Reaction score
65
Location
with Taiga
Can anyone help me making sniper gloves stht like distance ring?
I made this

Code:
	<item id="5875" name="sniper gloves">
		<attribute key="description" value="They are the pride of the paladin guild."/>
		<attribute key="weight" value="400"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="skillDist" value="4"/>		
	</item>
and i can put gloves in ring slot but it dont add skill..
what i have to do?
 
You have to add them to movements.xml
Code:
	<movevent type="Equip" itemid="5875" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="5875" slot="ring" event="function" value="onDeEquipItem"/>
 
Back
Top