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

Can only be wielded properly by....

HelteraOTp0wns

New Member
Joined
May 30, 2009
Messages
23
Reaction score
0
Hey, another noob request :D i cant find out how i can change the armors like: It can only be wielded properly by super knights. I got an armor that gives 1k hp regain per second, the problem is that only mages can wield it -.- help please?
 
movements/movements.xml

Example:
Code:
	<movevent type="Equip" itemid="8885" slot="armor" level="75" event="function" value="onEquipItem">
		[B]<vocation name="Paladin"/>[/B]
		[B]<vocation name="Royal Paladin" showInDescription="0"/>[/B]
	</movevent>
 
Hey, when i try to run my server i get this message: [01/07/2009 11:52:35] Warning: [BaseEvents::loadFromXml] Can not open movements.xml
[01/07/2009 11:52:35] > ERROR: Unable to load MoveEvents!
what i have to do? o_O
 
If you have newest TFS use:
Code:
	<movevent type="Equip" itemid="8885" slot="armor" level="75" [B]event="function" value="onEquipItem">[/B]
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>
	</movevent>
If older, use:
Code:
	<movevent type="Equip" itemid="8885" slot="armor" level="75" [B]function="onEquipItem">[/B]
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>
	</movevent>
 
Back
Top