• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Slain mummy decaing too fast

pioncz

New Member
Joined
Dec 3, 2008
Messages
149
Reaction score
1
Hello,
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.
Please help, rep++
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Mummy" nameDescription="a mummy" race="undead" experience="150" speed="220" manacost="0">
	<health now="240" max="240"/>
	<look type="65" corpse="6004"/>
Code:
	<item id="6004" article="a" name="slain mummy">
		<attribute key="containerSize" value="10" />
		<attribute key="decayTo" value="2949" />
		<attribute key="duration" value="10" />
		<attribute key="corpseType" value="undead" />
	</item>
 
LUA:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Mummy" nameDescription="a mummy" race="undead" experience="150" speed="220" manacost="0">
	<health now="240" max="240"/>
	<look type="65" corpse="2949"/>

try this.
 
Back
Top