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

Slain mummy decaing too fast

pioncz

New Member
Joined
Dec 3, 2008
Messages
149
Reaction score
1
Hi there,
In my items.xml file i have same duration times to mummy and for example ghoul = 10.
After 10 seconds mummy slain mummy decaing but slain ghoul need 1 minute. Why is that?
I want to make mummy decay same time as ghoul - 1 minute. I was looking for problem in monsters xmls but no results.
Please help, rep++

It's second try to solve this problem.
 
Ghoul that works fine:
Code:
<item id="5976" name="slain ghoul" article="a">
		<attribute key="containerSize" value="10" />
		<attribute key="decayTo" value="3113" />
		<attribute key="duration" value="10" />
		<attribute key="corpseType" value="undead" />
</item>
And mummy that dont work:
Code:
<item id="6004" name="remains of a mummy">
		<attribute key="containerSize" value="10" />
		<attribute key="decayTo" value="2949" />
		<attribute key="duration" value="10" />
		<attribute key="corpseType" value="undead" />
	</item>
I think that might be problem in source code of something but im not sure where i should look.
 
Back
Top