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

Mana Ring

kilirt

New Member
Joined
May 11, 2009
Messages
223
Reaction score
2
Excuse me i've a problem with my mana ring i've this:

Code:
<movevent type="Equip" itemid="2127" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2127" slot="ring" event="function" value="onDeEquipItem"/>

and:

Code:
	<item id="2127" article="an" name="Mana Ring">
		<attribute key="weight" value="80"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="maxHealthPoints" value="25%" />
		<attribute key="maxManaPoints" value="25%" />

But this add only 25 hp and not 25% of your hp how can i fix it?
 
Change
Lua:
		<attribute key="maxHealthPoints" value="25%" />
		<attribute key="maxManaPoints" value="25%" />
to
Lua:
		<attribute key="maxHealthPercent" value="25" />
		<attribute key="maxManaPercent" value="25" />
 
Code:
<item id="2127" article="an" name="Mana Ring">
       <attribute key="weight" value="80"/>
       <attribute key="slotType" value="ring"/>
       [COLOR=red]<attribute key="maxHealthPercent" value="25" />[/COLOR]
       <attribute key="maxManaPercent" value="25" />
 
Thx is working but i not win 25% of mana/health i loose:

Code:
Mana: [491080 / 491080].


et when i equip ring:
Code:
Mana: [122770 / 122770].
 
Put it to 125
Code:
	[B][COLOR="#000000"]<attribute[/COLOR][/B] [COLOR="#000066"]key[/COLOR][COLOR="#009900"]=[/COLOR][COLOR="#ff0000"]"maxHealthPercent"[/COLOR] [COLOR="#000066"]value[/COLOR][COLOR="#009900"]=[/COLOR][COLOR="#ff0000"]"125"[/COLOR][B][COLOR="#000000"]/>[/COLOR][/B]
	[B][COLOR="#000000"]<attribute[/COLOR][/B] [COLOR="#000066"]key[/COLOR][COLOR="#009900"]=[/COLOR][COLOR="#ff0000"]"maxManaPercent"[/COLOR] [COLOR="#000066"]value[/COLOR][COLOR="#009900"]=[/COLOR][COLOR="#ff0000"]"125"[/COLOR][B][COLOR="#000000"]/>[/COLOR][/B]
 
add this onto the ring, Realpwnz.

XML:
         <attribute key="healthGain" value="25" />
		<attribute key="healthTicks" value="1000" />
		<attribute key="manaGain" value="25" />
		<attribute key="manaTicks" value="1000" />
 
Back
Top