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

Item 7470 has an infinate decay-chain

Kayan

Active Member
Joined
Sep 19, 2007
Messages
1,561
Reaction score
38
Location
Santa Catarina
:o

What is this

Code:
Warning: [Items::loadFromXml] Item  7465 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7466 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7467 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7468 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7469 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7470 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7471 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7472 has an infinate decay-chain
Warning: [Items::loadFromXml] Item  7473 has an infinate decay-chain

lol
 
It's warnings that you should consider to fix.
 
I guess it's referring to this:
Code:
	<item id="1506" article="a" name="searing fire">
		<attribute key="type" value="magicfield"/>
		<attribute key="decayTo" value="1507"/>
		<attribute key="duration" value="10"/>
		<attribute key="replaceable" value="0"/>
		<attribute key="field" value="fire">
			<attribute key="damage" value="300"/>
		</attribute>
	</item>
	<item id="1507" article="a" name="searing fire">
		<attribute key="type" value="magicfield"/>
		<attribute key="decayTo" value="1508"/>
		<attribute key="duration" value="10"/>
		<attribute key="replaceable" value="0"/>
		<attribute key="field" value="fire">
			<attribute key="damage" value="300"/>
		</attribute>
	</item>
	<item id="1508" name="ashes">
		<attribute key="type" value="magicfield"/>
		<attribute key="decayTo" value="1506"/>
		<attribute key="duration" value="5"/>
		<attribute key="replaceable" value="0"/>
	</item>

They keep decaying to eachother all the time and the server is just warning you about it, however that's how those fields are supposed to work IIRC so you shouldn't have to worry about the warning.
 
Back
Top