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

The monster i made does't attack me.

arturk4

New Member
Joined
Mar 2, 2011
Messages
61
Reaction score
2
Hi i made a monster and it can't attack me, why?

Here is what i have in the monster file :
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Pwnager" nameDescription="a Pwnager" race="fire" experience="450000" speed="999" manacost="320">
<health now="500000" max="500000"/>
<look type="201" corpse="6007"/>
<targetchange interval="2000" chance="5"/>
<strategy attack="1000" defense="0"/>
<flags>
<flag summonable="0"/>
<flag attackable="1"/>
<flag hostile="1"/>
<flag illusionable="0"/>
<flag convinceable="1"/>
<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="1850" attack="1750"/>
<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="-2000" max="-4000">
<attribute key="areaEffect" value="icearea"/>
</attack>
<attack name="physical" interval="3000" chance="18" radius="5" target="1" min="-500" max="-2550">
<attribute key="areaEffect" value="groundshaker"/>
</attack>
<attack name="fire" interval="2000" chance="15" radius="6" target="1" min="-500" max="-1000">
<attribute key="areaEffect" value="firearea"/>
<attribute key="shootEffect" value="fire"/>
</attack>
</attacks>
<defenses armor="80" defense="10"/>
<elements>
<element energyPercent="-20"/>
<element holyPercent="-20"/>
<element earthPercent="-20"/>
<element deathPercent="-20"/>
</elements>
<voices interval="5000" chance="10">
<voice sentence="I Gonna PWN You"/>
<voice sentence="PWN PWN PWN"/>
<voice sentence="PWN YOU,HAHAHAHA"/>
<voice sentence="I will PWN you Fucking player!"/>
</voices>
<loot>
<item id="2148" countmax="9" chance="0"/>
<item id="2461" chance="0"/>
<item id="1987" chance="0">
<inside>
<item id="2559" chance="0"/><!-- small axe -->
</inside>
</item>
</loot>
</monster>
 
Back
Top