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

No distance bonus!!

Sehoxe

New Member
Joined
Feb 15, 2010
Messages
53
Reaction score
1
Hello i got a problem.. im creating vip items and im having trouble with distance bonus skill i copied paladin armor bonuses to my vip legs and it works! it gives +8 dist, but when i did the same with my armor and helmet it didnt work! i mean ingame it says for example Supreme legs + 8 distance fighting.. but when i wear it doesnt work! i mean the armor dont give me any bonus! and the legs are working fine! why? :(

this one is working :)

Code:
<item id="2504" name="Sniper Legs">
		<attribute key="weight" value="4900"/>
		<attribute key="armor" value="9"/>
		<attribute key="slotType" value="legs"/>
		<attribute key="absorbPercentPhysical" value="5"/>
		<attribute key="skillDist" value="8"/>

this on ISNT working :(!

Code:
<item id="12656" article="a" name="Sniper Hat">
		<attribute key="armor" value="8"/>
		<attribute key="slotType" value="head"/>
		<attribute key="weight" value="900"/>
		<attribute key="skillDist" value="8"/>
		<attribute key="absorbPercentPhysical" value="2"/>
 
Have you registered the item in movements.xml?

XML:
<movevent type="Equip" itemid="12656" slot="head" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="12656" slot="head" event="function" value="onDeEquipItem"/>
 
Back
Top