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

Skills on EQ

jeppsonskate

Member
Joined
Apr 3, 2012
Messages
117
Reaction score
18
Location
Sweden
XML:
<item id="2653" article="a" name="Donate Knight Armor">
    <attribute key="weight" value="3000" />
    <attribute key="armor" value="20" />
	<attribute key="skillSword" value="5" />
	<attribute key="skillAxe" value="5" />
	<attribute key="skillClub" value="5" />
    <attribute key="slotType" value="body" />


I got this skill adds on the armor, i restart ot and get this 19:00 You see a Donate Knight Armor (Arm:20, club fighting +5, sword fighting +5, axe fighting +5).
ItemID: [2653].
Position: [X: 32354] [Y: 32228] [Z: 7].

BUT WHEN I PUT THE ARMOR ON ME I DONT'T GET SKILLS.. ITS THE SAME WITH MAGIC LEVEL SKILLADD OM MAGE ITEMS...


So Can Any Nice Person Tell Me How To Fix This! :)
 
Last edited by a moderator:
Is Red tunic.. made by you need added in movements.xml.. try this:
items.xml
XML:
<item id="2653" article="a" name="Donate Knight Armor">
		<attribute key="armor" value="2" />
		<attribute key="slotType" value="body" />
		<attribute key="weight" value="3000" />
		<attribute key="skillSword" value="5" />
		<attribute key="skillAxe" value="5" />
		<attribute key="skillClub" value="5" />
	</item>

movements.xml
XML:
<movevent type="Equip" itemid="2653" slot="armor" event="function" value="onEquipItem">
		<vocation id="4"/>
		<vocation id="8"/>
	</movevent>
	<movevent type="DeEquip" itemid="2653" slot="armor" event="function" value="onDeEquipItem"/>
 
Last edited by a moderator:
Back
Top