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

Tibia ot server question

reborn624

New Member
Joined
Feb 7, 2010
Messages
50
Reaction score
0
Hello

I want to add items vip but I don't know how to allow sorcerers and druids to use knight armors.

How I can edit?
 
search id of knight armor in items.xml ( it is 2476 ) and then go to movement.xml search for id 2476 and you will find this

HTML:
	<movevent type="Equip" itemid="2476" slot="armor" event="function" value="onEquipItem">
		<vocation id="4"/>
		<vocation id="8" showInDescription="0"/>
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
	</movevent>

and just delete the <vocations> to allow all vocations to use that armor
 
search id of knight armor in items.xml ( it is 2476 ) and then go to movement.xml search for id 2476 and you will find this

HTML:
	<movevent type="Equip" itemid="2476" slot="armor" event="function" value="onEquipItem">
		<vocation id="4"/>
		<vocation id="8" showInDescription="0"/>
		<vocation id="3"/>
		<vocation id="7" showInDescription="0"/>
	</movevent>

and just delete the <vocations> to allow all vocations to use that armor

I haven't that, example this:

<item id="12568" name="Vipl Armor">
<attribute key="weight" value="12000" />
<attribute key="armor" value="" />
<attribute key="slotType" value="body" />

In game it have vocations

Edit:

Ahh movements, Found that, thanks! :D
 
Back
Top