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

Stone skin amulet

hexania

New Member
Joined
Aug 9, 2010
Messages
17
Reaction score
0
Why when players atk me it not remover ;| ?

Tibia 8.6


were change it?
 
In items.xml searh for "stone skin amulet"
and replace it with this
Code:
	<item id="2197" article="a" name="stone skin amulet">
		<attribute key="weight" value="760"/>
		<attribute key="slotType" value="necklace"/>
		<attribute key="charges" value="5"/>
		<attribute key="showcharges" value="1"/>
		<attribute key="absorbPercentPhysical" value="80"/>
		<attribute key="absorbPercentDeath" value="80"/>
		<attribute key="showattributes" value="1"/>
	</item>
 
Your script makes it say "you see a stone skin amulet, it has 1 charge. (when it actually has 5)

Use this one:
Code:
	<item id="2197" article="a" name="stone skin amulet">
		<attribute key="weight" value="760"/>
		<attribute key="slotType" value="necklace"/>
		<attribute key="charges" value="5"/>
		<attribute key="showcharges" value="5"/>
		<attribute key="absorbPercentPhysical" value="80"/>
		<attribute key="absorbPercentDeath" value="80"/>
		<attribute key="showattributes" value="1"/>
	</item>
 
Back
Top