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

Item fixes.

fajakuk

New Member
Joined
Dec 22, 2009
Messages
25
Reaction score
0
Hello, I want to make my Yalahari mask usable by all vocations and same with yalahari legs.. can someone help me with this?

And how do I make for example a mage armor that adds 20% hp? ty
 
Last edited:
I think, I'm Not 100% sure But I strongly think that,
In order to do things like that, you need a item Editor,
You can find them in the Download section!
Btw if its true, Please REP me :D
 
go to data/movements/movements.xml

this is your code
Code:
	<movevent type="Equip" itemid="9778" slot="head" level="80" event="function" value="onEquipItem">
		<vocation id="1"/>
		<vocation id="5" showInDescription="0"/>
		<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>
	</movevent>
delete
Code:
				<vocation id="1"/>
		<vocation id="5" showInDescription="0"/>
		<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>
do the same to the legs
 
items.xml
Code:
<attribute key="maxHealthPercent" value="120"/>
don't forget to register the item in movements.xml
 
items.xml
Code:
<attribute key="maxHealthPercent" value="120"/>
don't forget to register the item in movements.xml

Thanks man, but it seems already be added in the movements (its a ethno coat) but it doesn't work. And tbh I don't understand much in the movements, would be nice to get some help

sorry for a messy text hope u'll understand
 
Back
Top