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

Making a armor for all voc

Arrish

New Member
Joined
May 28, 2009
Messages
320
Reaction score
1
Location
Sweden
Hi , i have a armor which i want to be for all vocs , but now its only for druids and sorc..
so how can i change it to all vocs?
thx i give + rep:)
 
data/movements/movements.xml

Example for Magic Plate Armor (ItemID 2472)
(remove the text in red)

For TFS 0.2.x:
Code:
	<!-- Armors -->
	<movevent event="Equip" itemid="2472" slot="armor" function="onEquipItem">
[B][COLOR="Red"]		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>[/COLOR][/B]
	</movevent>

For TFS 0.3.x: (the process is basically the same)
Code:
	<!-- Armors -->
	<movevent type="Equip" itemid="2472" slot="armor" event="function" value="onEquipItem">
[B][COLOR="Red"]		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>[/COLOR][/B]
	</movevent>
 
It's in movements.xml and in the script folder.

Post the armor script you want to be available for all vocations here, or whether if you choose to edit it by yourself is completely up to you. :)
 
Back
Top