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

Custom Items Bug.

Raks One

Member
Joined
May 10, 2008
Messages
92
Reaction score
5
Hello all,
Well, my problem is, i am tying to add custom items on my server ( like 2mlvl up, 5 skills up..)then , when i add the items, and open server, dont work, i put a item like helmet mlvl +2, and dont work,but if im put yalahari mask, work, and me copy the code of yalahari mask into golden helmet, it must work :S
any suggestion?
Sorry for bad english ;>
Greetings
 
All Armor types (Armor, Head, Legs, Feet, Shield, Ring, And Necklace) That have special abilities like Magic level and Skills Are placed in your data/movements/movements.xml.

The Reason your yalahari mask works, is because it's placed in movements.xml already. So just simply add your custom items.

Example ::
Code:
	<movevent type="Equip" itemid="[COLOR="Red"]Your_Item_ID_Here[/COLOR]" slot="head" level="[COLOR="Red"]YourItemLevelHere[/COLOR]" event="function" value="onEquipItem">
		<vocation id="1"/> <!-- Sorcerer -->
		<vocation id="2"/> <!-- Druid -->
		<vocation id="3"/> <!-- Paladin -->
		<vocation id="4"/> <!-- Knight -->
		<vocation id="5" showInDescription="0"/> <!-- Master Sorcerer -->
		<vocation id="6" showInDescription="0"/> <!-- Elder Druid --> 
		<vocation id="7" showInDescription="0"/> <!-- Royal Paladin --> 
		<vocation id="8" showInDescription="0"/> <!-- Elite Knight -->
	</movevent>
	<movevent type="DeEquip" itemid="[COLOR="Red"]Your_Item_ID_Here[/COLOR]" slot="head" event="function" value="onDeEquipItem"/>

Rep If this helps :)
 
Back
Top