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

shield give mana

Gregor

New Member
Joined
Feb 29, 2008
Messages
770
Reaction score
3
Location
UK/POLAND
Hello!
I want to this shield give mana but it dont wotking ;/

items.xml:

Code:
<item id="8905" article="a" name="rainbow shield">
		<attribute key="description" value="It give 30 mana per 1 second and 10 health per 2 seconds."/>
		<attribute key="weight" value="80"/>
		<attribute key="defense" value="40"/>
		<attribute key="healthGain" value="10"/>
		<attribute key="healthTicks" value="2000"/>
		<attribute key="manaGain" value="30"/>
		<attribute key="manaTicks" value="1000"/>
		<attribute key="showduration" value="1"/>
		<attribute key="weaponType" value="shield"/>

Thanks
 
Have you added the shield to movements? If not then this should work.
Code:
<movevent event="Equip" itemid="8905" slot="right-hand" level="100" function="onEquipItem">
		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
	</movevent>
	<movevent event="DeEquip" itemid="8905" slot="right-hand" function="onDeEquipItem"/>
	<movevent event="Equip" itemid="8905" slot="left-hand" level="100" function="onEquipItem">
		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
	</movevent>
	<movevent event="DeEquip" itemid="8905" slot="left-hand" function="onDeEquipItem"/>
 
Here this works:

Code:
    <item id="8905" article="a" name="rainbow shield">
        <attribute key="description" value="Strange elemental magic flows over this shield."/>
        <attribute key="weight" value="6900"/>
        <attribute key="defense" value="30"/>
        <attribute key="weaponType" value="shield"/>
        <attribute key="healthGain" value="1"/>
        <attribute key="healthTicks" value="2000"/>
        <attribute key="manaGain" value="2"/>
        <attribute key="manaTicks" value="1000"/>
    </item>

Remove the line showduration.
 
PHP:
    <item id="8905" article="a" name="rainbow shield">
        <attribute key="description" value="Strange elemental magic flows over this shield."/>
        <attribute key="weight" value="6900"/>
        <attribute key="defense" value="30"/>
        <attribute key="weaponType" value="shield"/>
        <attribute key="healthGain" value="1"/> // change this for hp
        <attribute key="healthTicks" value="2000"/>
        <attribute key="manaGain" value="2"/> // change this for mana
        <attribute key="manaTicks" value="1000"/>
    </item>
 
Back
Top