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

ITEMS problem tfs 0.4 dev 3884 8.6

domelxp

Member
Joined
Mar 1, 2010
Messages
243
Reaction score
5
HELLO ALL I HAVE PROBLEM THIS IS MY ITEM ON ITEMS.XML
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>

WHY HEN IM LOOT SSA FROM HYDRA OR OTHER MONSTER IM FOUND SSA ONLY 1 CHARGE

Code:
 You see a stone skin amulet (protection physical +80%, death +80%) that has 1 charge left.
It weighs 7.60 oz.

THX FOR HELP
 
Lua:
<attribute key="charges" value="5" />
		<attribute key="showcharges" value="1" />

Gl.
<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>

i have the same .... where is the diference ??
 
it's probably actually source code bug I remember that it was fixed in some old revision of otserv prolly they didn't patched it.
 
i have rev 3884 ...
Code:
<attribute key="charges" value="5" />
<attribute key="showcharges" value="5" />
dont work ....
maybe i must change rev
 
Back
Top