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

Need help whit some boots

Status
Not open for further replies.

quixer

New Member
Joined
Jun 22, 2008
Messages
196
Reaction score
0
Can some one tell me how i make a pair of boots for all vocations ?


This is the boots i wanna edit and all info : <item id="7893" name="Lightning Boots">
<attribute key="description" value="It has 25% energy, ice, fire, death and earth protection.It also gives you 15 health and 20 mana per second."/>
<attribute key="weight" value="750"/>
<attribute key="armor" value="2"/>
<attribute key="absorbPercentEnergy" value="25"/>
<attribute key="absorbPercentIce" value="25"/>
<attribute key="absorbPercentFire" value="25"/>
<attribute key="absorbPercentEarth" value="25"/>
<attribute key="absorbPercentDeath" value="25"/>
<attribute key="healthGain" value="15"/>
<attribute key="healthTicks" value="1000"/>
<attribute key="manaGain" value="20"/>
<attribute key="manaTicks" value="1000"/>
<attribute key="speed" value="70"/>
<attribute key="slotType" value="feet"/>
 
In movements.xml just search for the item id "7893" and add your vocations.
Lua:
	<movevent type="DeEquip" itemid="7891" slot="feet" event="function" value="onDeEquipItem"/>
	<movevent type="Equip" itemid="7893" slot="feet" event="function" value="onEquipItem">
		<vocation name="Sorcerer"/>
		<vocation name="Master Sorcerer" showInDescription="0"/>
		<vocation name="Druid"/>
		<vocation name="Elder Druid" showInDescription="0"/>
	</movevent>
 
In movements.xml just search for the item id "7893" and add your vocations.
Lua:
	<movevent type="DeEquip" itemid="7891" slot="feet" event="function" value="onDeEquipItem"/>
	<movevent type="Equip" itemid="7893" slot="feet" event="function" value="onEquipItem">
		<vocation name="Sorcerer"/>
		<vocation name="Master Sorcerer" showInDescription="0"/>
		<vocation name="Druid"/>
		<vocation name="Elder Druid" showInDescription="0"/>
	</movevent>


Thank you verry much :D

rep++
 
Status
Not open for further replies.
Back
Top