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

dead rat turns in to a Tibiora's Box

shawntio

Member
Joined
Apr 14, 2008
Messages
737
Reaction score
5
Location
sweden
Hi when i killed a rat on my ot and when the rat started to rot it turned in to a Tibiora's Box ;S if someone knows how to solve this bug please reply thanks! probably easy to fix
 
In items.xml, change this number to 0:
Code:
	<item id="2815" article="a" name="dead rat">
		<attribute key="weight" value="3000" />
		<attribute key="decayTo" value="[B][COLOR="red"]2816[/COLOR][/B]" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
And remove this (or change the name and attributes accordingly to those of Tibiora's box):
Code:
	<item id="2816" article="a" name="dead rat">
		<attribute key="weight" value="2000" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
Also change this one to 0:
Code:
	<item id="2851" article="a" name="dead bear">
		<attribute key="decayTo" value="[B][COLOR="red"]2852[/COLOR][/B]" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
And remove this (or change the name and attributes accordingly to those of Draken Boots):
Code:
	<item id="2852" article="a" name="dead bear">
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
 
i don't even have Tibiora's box in items.xml ;S
XML:
	<item id="2816" name="Tibiora's box">
		<attribute key="weight" value="4200" />
		<attribute key="description" value="It contains all the knowledge of the Tibian lands gathered arduosly by Tibia-Stats." />
	</item>
 
Back
Top