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

Hellish Tortoise

Status
Not open for further replies.

Collz

Pandas Go RAWR!!!
Joined
Oct 10, 2008
Messages
2,091
Reaction score
58
Location
New York
Well there is a monster on my map editor called Hellish Tortoise and I wanted to use it as a boss. So I added it to the map, but when I turned the server on it said could not find the monster file. I checked in the monster folder but could not find the monster file. I thought that it comes with the distro but it doesn't. I looked throughout OTland as well but couldn't find it. So if anyone has this monster file, it would be great if they could give it to me.
 
{Save as} hellish tortoise.xml:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Hellish Tortoise" nameDescription="a hellish tortoise" race="blood" experience="2100" speed="200" manacost="0">
	<health now="4150" max="4150"/>
	<look type="303" corpse="9780"/>
	<targetchange interval="5000" chance="16"/>
	<strategy attack="100" defense="0"/>
	<flags>
		<flag summonable="0"/>
		<flag attackable="1"/>
		<flag hostile="1"/>
		<flag illusionable="0"/>
		<flag convinceable="0"/>
		<flag pushable="0"/>
		<flag canpushitems="1"/>
		<flag staticattack="90"/>
		<flag lightlevel="0"/>
		<flag lightcolor="0"/>
		<flag targetdistance="1"/>
		<flag runonhealth="0"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" min="0" max="-1700"/>
	</attacks>
	<defenses armor="21" defense="21">
		<defense name="healing" interval="2000" chance="100" min="50" max="150"/>
	</defenses>
	<immunities>
		<immunity physical="0"/>
		<immunity energy="0"/>
		<immunity fire="0"/>
		<immunity poison="0"/>
		<immunity lifedrain="0"/>
		<immunity paralyze="0"/>
		<immunity outfit="0"/>
		<immunity drunk="0"/>
		<immunity invisible="1"/>
	</immunities>
	<loot>
		<item id="2148" countmax="30" chance="682100"/><!-- gold coin -->
		<item id="2667" countmax="1" chance="13670" /><!-- fish -->
	</loot>
</monster>

{Add} In \mods\custommonsters.xml:
Code:
	<!-- Custom -->
	<monster name="Hellish Tortoise" file="Custom/hellish tortoise.xml"/>


{Add} In items.xml:
Code:
	<item id="9780" article="a" name="dead hellish tortoise">
		<attribute key="containerSize" value="10" />
		<attribute key="decayTo" value="9783" />
		<attribute key="duration" value="900" />
		<attribute key="corpseType" value="blood" />
		<attribute key="fluidSource" value="blood" />
	</item>
	<item id="9781" article="a" name="dead hellish tortoise">
		<attribute key="weight" value="6000" />
		<attribute key="decayTo" value="9782" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
	<item id="9782" article="a" name="dead hellish tortoise">
		<attribute key="weight" value="6000" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="undead" />
	</item>
	<item id="9783" article="a" name="dead hellish tortoise">
		<attribute key="decayTo" value="9781" />
		<attribute key="duration" value="600" />
		<attribute key="corpseType" value="blood" />
	</item>
 
Last edited:
Status
Not open for further replies.
Back
Top