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

Solved Monsters Max Items in corpse

arkoth

New Member
Joined
Jul 18, 2008
Messages
24
Reaction score
0
Im havving trouble with my loot rate, so ive deccided to put it in like "9999999999999999" and every time i killed and hydra it will give me every single time the same items, so... i found the error, i need more slots so that the loot wpuld come up once ive turn down the loot exp. The question is.... how can i edit my monsters corpse so that they would give me all the items at once per kill
 
Im havving trouble with my loot rate, so ive deccided to put it in like "9999999999999999" and every time i killed and hydra it will give me every single time the same items, so... i found the error, i need more slots so that the loot wpuld come up once ive turn down the loot exp. The question is.... how can i edit my monsters corpse so that they would give me all the items at once per kill

You will need to edit your items.xml and change the containerSize variable.

For example, the following changes the Hydra from 10 slots to 20.

Code:
	<item id="4283" article="a" name="dead hydra">
		<attribute key="containerSize" value="[COLOR="#FF0000"]2[/COLOR]0" />
		<attribute key="decayTo" value="4284" />
		<attribute key="duration" value="900" />
		<attribute key="corpseType" value="blood" />
		<attribute key="fluidSource" value="blood" />
	</item>
	<item id="4284" article="a" name="dead hydra">
		<attribute key="containerSize" value="[COLOR="#FF0000"]2[/COLOR]0" />
		<attribute key="decayTo" value="4285" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
	<item id="4285" article="a" name="dead hydra">
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
	<item id="6048" article="a" name="dead hydra">
		<attribute key="containerSize" value="[COLOR="#FF0000"]2[/COLOR]0" />
		<attribute key="decayTo" value="4283" />
		<attribute key="duration" value="10" />
		<attribute key="corpseType" value="blood" />
		<attribute key="fluidSource" value="blood" />
	</item>

the red 2's were originally 1's (changed containerSize from 10 to 20).

Cheers,
Yodot.
 
Back
Top