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

ToloXXX

New Member
Joined
Dec 14, 2014
Messages
93
Reaction score
4
I need help, apparently I modified the monsters attack, experience and health. But when the monster is spawned all the hits that it receives takes no damage at all so yea its bugged. Any thoughts?

<?xml version="1.0" encoding="UTF-8"?>
<monster name="Pirate Skeleton" nameDescription="a pirate skeleton" race="undead" experience="125000" speed="230" manacost="0">
<health now="300000" max="300000"/>
<look type="195" corpse="6070"/>
<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="1"/>
<flag canpushitems="1"/>
<flag canpushcreatures="0"/>
<flag staticattack="90"/>
<flag targetdistance="1"/>
<flag runonhealth="20"/>
</flags>
<attacks>
<attack name="melee" interval="2000" min="-1000" max="-2000"/>
</attacks>

<elements>
<element deathPercent="100"/>
<element holyPercent="-20"/>
</elements>
<loot>
<item id="2148" countmax="25" chance="40000"/><!-- gold coin -->
<item id="2229" countmax="2" chance="9727"/><!-- skull -->
<item id="2231" chance="4000"/><!-- big bone -->
<item id="6095" chance="5000"/><!-- pirate shirt -->
<item id="5927" chance="100000"><!-- pirate bag -->
<inside>
<item id="2376" chance="18402"/><!-- sword -->
<item id="2449" chance="8491"/><!-- bone club -->
</inside>
</item>
</loot>
</monster>
 
im new in scripting but i dont see 1 line in ur monster file that is:

<defenses armor="15" defense="15" />

try to add this maybe it will help

@edit also try to delete <strategy attack="100" defense="0"/> i also dont see this line in my datapack
 
im new in scripting but i dont see 1 line in ur monster file that is:

<defenses armor="15" defense="15" />

try to add this maybe it will help

@edit also try to delete <strategy attack="100" defense="0"/> i also dont see this line in my datapack

im new in scripting but i dont see 1 line in ur monster file that is:

<defenses armor="15" defense="15" />

try to add this maybe it will help

@edit also try to delete <strategy attack="100" defense="0"/> i also dont see this line in my datapack


yeah I deleted it, it worked! genius, thanks
 
Back
Top