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

TFS 0.3.6 Attributes

wesoly136

Member
Joined
Jul 30, 2009
Messages
562
Reaction score
8
Hi!
I had a transform ring that was giving your max HP 2x. It was on 0.2.7, when I changed my TFS to 0.3.6 attribute "maxHitPointsPercent" doesn't work :/

What's the problem? (I added two lines in movements)
Help!
 
<item id="2127" article="a" name="transform ring">

<attribute key="weight" value="40"/>
<attribute key="slotType" value="ring"/>
<attribute key="maxManaPointsPercent" value="200"/>
<attribute key="maxHitPointsPercent" value="200"/> </item>
 
Code:
<movevent event="Equip" itemid="2127" slot="head" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2127" slot="legs" function="onDeEquipItem"/>

and items.xml
Code:
<item id="2127" article="a" name="transform ring">
	
		<attribute key="weight" value="40"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="maxManaPointsPercent" value="200"/>
		<attribute key="maxHitPointsPercent" value="200"/>	</item>

It's all
 
Back
Top