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

Help me whit this

Rawkar

New Member
Joined
Apr 13, 2008
Messages
11
Reaction score
0
Hello!
I want to some shield give mana 700, life 1000 or skills 10 more Pls Help me
 
An example (great shield)
Code:
	<item id="[B][COLOR="Blue"]2522[/COLOR][/B]" article="a" name="[COLOR="Blue"][B]great shield[/B][/COLOR]">
		<attribute key="description" value="The shield is made of dragon scales."/>
		<attribute key="weight" value="8400"/>
		<attribute key="defense" value="38"/>
		<attribute key="weaponType" value="shield"/>
		<attribute key="duration" value="[B][COLOR="Blue"]3600[/COLOR][/B]"/>
		<attribute key="showduration" value="1"/>
		<attribute key="decayTo" value="0"/>
		<attribute key="healthGain" value="[B][COLOR="Blue"]1000[/COLOR][/B]"/>
		<attribute key="healthTicks" value="2000"/>
		<attribute key="manaGain" value="[B][COLOR="Blue"]700[/COLOR][/B]"/>
		<attribute key="manaTicks" value="1000"/>
		<attribute key="[B][COLOR="Blue"]skillAxe[/COLOR][/B]" value="[B][COLOR="Blue"]10[/COLOR][/B]"/>
	</item>

And add in movements.xml..

Code:
	<movevent event="[COLOR="Blue"][B]Equip[/B][/COLOR]" itemid="[B][COLOR="Blue"]2522[/COLOR][/B]" slot="[B][COLOR="Blue"]left-hand[/COLOR][/B]" function="onEquipItem"/>
	<movevent event="[B][COLOR="Blue"]DeEquip[/COLOR][/B]" itemid="[B][COLOR="Blue"]2522[/COLOR][/B]" slot="[B][COLOR="Blue"]left-hand[/COLOR][/B]" function="onDeEquipItem"/>
 
Back
Top