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

How to do a Custom Monster.

Lucaking

Member
Joined
Jun 27, 2011
Messages
248
Reaction score
9
On this Thread i wanna Show you, how to do a Custom Monster, Its very easy to do it.

First, Go to \data\monster, Then choose a Monster..
I will Choose a Terror Bird, You will see like this :

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="terror bird" nameDescription="a terror bird" race="blood" experience="150" speed="280" manacost="490">
  <health now="300" max="300"/>
  <look type="218" head="20" body="30" legs="40" feet="50" corpse="6057"/>
  <targetchange interval="5000" chance="8"/>
  <strategy attack="100" defense="0"/>
  <flags>
    <flag summonable="1"/>
    <flag attackable="1"/>
    <flag hostile="1"/>
    <flag illusionable="1"/>
    <flag convinceable="1"/>
    <flag pushable="0"/>
    <flag canpushitems="1"/>
    <flag canpushcreatures="1"/>
    <flag targetdistance="1"/>
    <flag staticattack="90"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="melee" interval="2000" skill="46" attack="37"/>
  </attacks>
  <defenses armor="13" defense="21"/>
    <elements>
    <element energyPercent="20"/>
	<element icePercent="20"/>
	<element firePercent="-10"/>
	<element earthPercent="-10"/>
	<element deathPercent="-5"/>
  </elements>
  <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="0"/>
  </immunities>


First, Choose the Name of the Monster like to Angry Bird (Im not really Creativ at the moment).
Code:
<monster name="[COLOR="#FF0000"]terror bird[/COLOR]" nameDescription="[COLOR="#FF0000"]a terror bird[/COLOR]" race="blood" [COLOR="#00FF00"]experience="[/COLOR][COLOR="#00FF00"]150"[/COLOR] [COLOR="#FFA500"]speed="280"[/COLOR] [COLOR="#40E0D0"]manacost="490"[/COLOR]>

<monster name="Angry Bird" nameDescription="a Angry Bird" race="blood"experience="1200" speed="600" manacost="850">

The Monster Name
When you do Right-Click on it, (You see a Angry Bird)
"The experience, You will get when you Kill it"
The Speed, How fast it is.
The manacost, When somebody Summon this Monster.

Code:
<health now="[COLOR="#FFFF00"]300[/COLOR]" max="[COLOR="#FFFF00"]300[/COLOR]"/>

Just put the Health of the Monster there

<look type="218" head="20" body="30" legs="40" feet="50" corpse="6057"/>

How it looks, This is from the Bird you see there.

The corpse, When it dies how the Corpse look like

Code:
[COLOR="#FF8C00"]<flag summonable="1"/>[/COLOR]
    [COLOR="#FF0000"]<flag attackable="1"/>[/COLOR]
    <flag hostile="1"/>
    [COLOR="#FFFF00"]<flag illusionable="1"/>[/COLOR]
    <flag convinceable="1"/>
    [COLOR="#00FFFF"]<flag pushable="0"/>[/COLOR]
    [COLOR="#800000"]<flag canpushitems="1"/>[/COLOR]
    [COLOR="#008000"]<flag canpushcreatures="1"/>[/COLOR]
    [COLOR="#EE82EE"]<flag targetdistance="1"/>[/COLOR]
    <flag staticattack="90"/>
    [COLOR="#800080"]<flag runonhealth="0"/>[/COLOR]


1 = Yes, 0 = No !!

If its able to Summonable.

If you can attack the Monster.

If somebody can Illusion in it.

If you can Push this Monster.

If it can Push items.

If it can Push other Monster.

If it got a Distance to the People who attack.

On which Health Points run away from The ppl who attack.



Code:
<attacks>
    <attack name="melee" interval="2000" skill="46" attack="37"/>

The melee of the monster, How much to Hit etc.


You can Copy other Monster spells to It !


Code:
  <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="0"/>
  </immunities>

For what its immunitie . 1 = Yes, 0 = No !!


Thats all.. It took some Time, And it were nice if you Rep+ me :)
 
Last edited:
This tutorial is incomplete. You're missing like half of it.
Sayings, loots, spells.
 
It's not bad but there are missing parts, complete it bro :p
 
Back
Top