• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Monster

Etzi

New Member
Joined
May 19, 2014
Messages
28
Reaction score
1
Hello how do i create a monster like this
iiJEHyvE8.png
(TFS 0.3.6) (8.60) Thanks :)
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Cave Wall" nameDescription="a cave wall" race="undead" experience="0" speed="0" manacost="0">
    <health now="1" max="1"/>
    <look typeex="5637"/>
    <targetchange interval="5000" chance="5"/>

    <flags>
        <flag summonable="0"/>
        <flag attackable="0"/>
        <flag illusionable="0"/>
        <flag convinceable="0"/>
        <flag pushable="0"/>
        <flag canpushitems="0"/>
    </flags>

    <immunities>
        <immunity physical="1"/>
        <immunity energy="1"/>
        <immunity fire="1"/>
        <immunity poison="1"/>
        <immunity ice="1"/>
        <immunity holy="1"/>
        <immunity death="1"/>
        <immunity lifedrain="1"/>
        <immunity manadrain="1"/>
        <immunity paralyze="1"/>
        <immunity drunk="1"/>
        <immunity outfit="1"/>
        <immunity invisible="1"/>
    </immunities>
</monster>
 
Last edited:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Energy Cave Wall" nameDescription="a cave wall" race="undead" experience="0" speed="0" manacost="0">
    <health now="1" max="1"/>
    <look typeex="6117"/>
    <targetchange interval="5000" chance="5"/>

    <flags>
        <flag summonable="0"/>
        <flag attackable="0"/>
        <flag illusionable="0"/>
        <flag convinceable="0"/>
        <flag pushable="0"/>
        <flag canpushitems="0"/>
    </flags>

    <immunities>
        <immunity physical="1"/>
        <immunity energy="1"/>
        <immunity fire="1"/>
        <immunity poison="1"/>
        <immunity ice="1"/>
        <immunity holy="1"/>
        <immunity death="1"/>
        <immunity lifedrain="1"/>
        <immunity manadrain="1"/>
        <immunity paralyze="1"/>
        <immunity drunk="1"/>
        <immunity outfit="1"/>
        <immunity invisible="1"/>
    </immunities>
</monster>
 
Back
Top