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

Need help with monsters

fredde3436

Member
Joined
Jul 6, 2009
Messages
226
Reaction score
7
So, I need help with 2 things.
1, Can u make a monster have infinitive health? i tried to make a negative number in monstername.xml but he just die upon summoning.

2, Can you make a monster look like a training dummy? -SOLVED
When i changed his looktype into a trainingdummy, server crashed when i spawned him.
I figured u must use
Code:
<look typeex="ID of item"/>
insted of
Code:
<look type="" corpse=""/>

please help :(
 
Last edited:
1) Infinitive health is not possible no. You should just give the monster for example 1000000000 hp min and max. You can also add:
<defense name="healing" interval="2000" chance="50" min="12000" max="28000">
<attribute key="areaEffect" value="blueshimmer"/>
</defense>
Or
<immunity paralyze="1"/>
<immunity invisible="1"/>
<immunity earth="1"/>
<immunity holy="1"/>

About the item, you should indeed do:
<look typeex="389"/> -- lavahole
But this means, there is a bug when you kills it.
So you also have to add a corpseid for it.
 
Last edited:
Well for health infinite is hard, but you can make so no one can kill him. He will just heal ;).
Add this
Code:
      <defense name="healing" interval="10000" chance="100" min="100000" max="100000"/>
    </defenses>
so he will heal 100000, if you want to heal faster change interval.
 
Back
Top