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

Monster

den4is

New Member
Joined
Mar 5, 2009
Messages
270
Reaction score
0
Hey.. Anyone know what to change to hit normally?
I got a server 15k EXP.. And the monster is one-hitting everybody.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="nice dennis" nameDescription="nice dennis" race="fire" experience="400000" speed="3800" manacost="0">
	<health now="400000" max="400000"/>
	<look type="12" head="19" body="104" legs="96" feet="96" corpse="6068"/>
	<targetchange interval="5000" chance="8"/>
	<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 canpushcreatures="1"/>
		<flag targetdistance="1"/>
		<flag staticattack="85"/>
		<flag runonhealth="0"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" skill="20000" attack="21000"/>
		<attack name="death" interval="1000" chance="11" length="8" spread="0" min="0" max="-600">
			<attribute key="areaEffect" value="mortarea"/>
		</attack>
		<attack name="death" interval="2000" chance="15" target="0" radius="4" min="-200" max="-700">
			<attribute key="areaEffect" value="icearea"/>
		</attack>
		<attack name="physical" interval="3000" chance="18" radius="5" target="1" min="-50" max="-255">
			<attribute key="areaEffect" value="groundshaker"/>
		</attack>
		<attack name="fire" interval="1500" chance="15" radius="6" target="1" min="-50" max="-600">
			<attribute key="areaEffect" value="firearea"/>
			<attribute key="shootEffect" value="fire"/>
		</attack>
	</attacks>
	<defenses armor="60" defense="55">
		<defense name="healing" interval="1000" chance="14" min="400" max="900">
			<attribute key="areaEffect" value="greenshimmer"/>
		</defense>
		<defense name="speed" interval="1000" chance="4" speedchange="500" duration="7000">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element icePercent="20"/>
		<element deathPercent="20"/>
		<element firePercent="-15"/>
	</elements>
	<immunities>
		<immunity lifedrain="1"/>
		<immunity invisible="1"/>
	</immunities>
	<voices interval="5000" chance="10">
		<voice sentence="Annihilation!" yell="1"/>
	</voices>
	<loot>
		<item id="2148" countmax="100" chance1="100000" chancemax="0"/>
		<item id="2148" countmax="50" chance1="100000" chancemax="0"/>
		<item id="2150" countmax="20" chance1="5515" chancemax="0"/> --Small amethyst
		<item id="2520" chance="7000"/> --Fire AXe
		<item id="1987" chance="100000">
		<inside>
			<item id="2158" chance="4300"/> --Blue gem
			<item id="2520" chance="7600"/> --Demon shield
			<item id="2165" chance="10000"/> --stealth ring
		</inside>
		</item>
	</loot>
</monster>
 
Back
Top