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

Lua What is wrong with this monster???

MadMOOK

Hoo
Joined
Apr 20, 2011
Messages
802
Reaction score
43
sad_zps1c0783eb.png

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Verminor" nameDescription="Verminor" race="fire" experience="35000" speed="380" manacost="0">
  <health now="80000" max="80000"/>
  <look type="12" head="38" body="114" legs="0" feet="94" corpse="6068"/>
  <targetchange interval="5000" chance="20"/>
  <strategy attack="65" defense="5"/>
  <flags>
    <flag summonable="0"/>
    <flag attackable="1"/>
    <flag hostile="1"/>
    <flag illusionable="0"/>
    <flag convinceable="0"/>
    <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="230" attack="210"/>
    <attack name="death" interval="1000" chance="8" radius="9" target="0" min="-800" max="-1900">
      <attribute key="areaEffect" value="mortarea"/>
    </attack>
    <attack name="speed" interval="1000" chance="12" radius="6" target="0" speedchange="-850" duration="60000">
      <attribute key="areaEffect" value="poison"/>
    </attack>
    <attack name="strength" interval="1000" chance="10" radius="5" target="0" min="-600" max="-1450">
      <attribute key="areaEffect" value="blackspark"/>
    </attack>
    <attack name="fire" interval="3000" chance="13" range="7" radius="7" target="1" min="-300" max="-800">
      <attribute key="shootEffect" value="fire"/>
      <attribute key="areaEffect" value="firearea"/>
    </attack>
    <attack name="manadrain" interval="3000" chance="8" radius="10" target="0" min="-600" max="-700">
      <attribute key="areaEffect" value="energyarea"/>
    </attack>
    <attack name="energy" interval="2000" chance="9" length="8" spread="0" min="-400" max="-800">
      <attribute key="areaEffect" value="redshimmer"/>
    </attack>
    <attack name="poisoncondition" interval="5000" chance="18" length="0" spread="0" min="-800" max="-1000">
      <attribute key="areaEffect" value="greenspark"/>
    </attack>
    <attack name="lifedrain" interval="2000" chance="6" radius="14" target="0" min="-600" max="-1200">
      <attribute key="areaEffect" value="greenshimmer"/>
    </attack>
  </attacks>
  <defenses armor="188" defense="145">
    <defense name="healing" interval="1000" chance="15" min="1000" max="3000">
      <attribute key="areaEffect" value="blueshimmer"/>
    </defense>
    <defense name="speed" interval="2000" chance="8" speedchange="480" duration="6000">
      <attribute key="areaEffect" value="redshimmer"/>
    </defense>
  </defenses>
  <immunities>
    <immunity physical="0"/>
    <immunity energy="1"/>
    <immunity fire="1"/>
    <immunity poison="1"/>
    <immunity lifedrain="1"/>
    <immunity paralyze="1"/>
    <immunity outfit="1"/>
    <immunity drunk="1"/>
    <immunity invisible="1"/>
  </immunities>
  <voices interval="5000" chance="10">
    <voice sentence="BOW TO THE POWER OF THE RUTHLESS SEVEN!" yell="1"/>
    <voice sentence="DESTRUCTION!" yell="1"/>
    <voice sentence="CHAOS!" yell="1"/>
    <voice sentence="DEATH TO ALL!" yell="1"/>
  </voices>
  <loot>
    <item id="2142" countmax="1" chance="200"/><!--ancient amulet-->
    <item id="2520" countmax="1" chance="15500"/><!--demon shield-->
    <item id="2431" countmax="1" chance="800"/><!--stonecutter axe-->
    <item id="2393" countmax="1" chance="12500"/><!--giant sword-->
    <item id="2152" countmax="100" chance="99900"/><!--plat coin-->
    <item id="2152" countmax="100" chance="88800"/><!--plat coin-->
    <item id="2152" countmax="100" chance="77700"/><!--plat coin-->
    <item id="2162" countmax="1" chance="11500"/><!--magic lightwand-->
    <item id="12647" countmax="1" chance="3000"/><!--snake god's wristguard-->[ATTACH=full]22568[/ATTACH]
    <item id="2517" countmax="1" chance="7500"/><!--shield of honor-->
    <item id="2164" countmax="1" chance="5000"/><!--ring of might-->
    <item id="2171" countmax="1" chance="4500"/><!--platinum amulet-->
    <item id="2436" countmax="1" chance="5000"/><!--skull staff-->
    <item id="2112" countmax="1" chance="14500"/><!--teddybear-->
    <item id="2421" countmax="1" chance="13500"/><!--thunder hammer-->
    <item id="2185" countmax="1" chance="3500"/><!--necrotic rod-->
    <item id="2188" countmax="1" chance="2500"/><!--wand of decay-->
    <item id="2143" countmax="15" chance="12500"/><!--white pearl-->
    <item id="9077" chance="100000"><!--super evil demonic bag -->
        <inside>
            <item id="2195" countmax="1" chance="4000"/><!--boh-->
            <item id="2151" countmax="7" chance="14000"/><!--talons-->
            <item id="2197" countmax="1" chance="4000"/><!--stoneskin amulet-->
            <item id="1982" countmax="1" chance="2600"/><!--purple tomb-->
            <item id="2214" countmax="1" chance="13000"/><!--ring of healing-->
            <item id="2158" countmax="1" chance="1500"/><!--blue gem-->
            <item id="2165" countmax="1" chance="9500"/><!--stealth ring-->
            <item id="2150" countmax="20" chance="13500"/>
            <item id="2149" countmax="10" chance="15500"/>
            <item id="2146" countmax="10" chance="13500"/>
            <item id="3955" countmax="1" chance="100"/><!--voodoo doll-->
            <item id="2179" countmax="1" chance="8000"/><!--gold ring-->
            <item id="12470" countmax="1" chance="5000"/><!--colorful feather-->
            <item id="2033" countmax="1" chance="7500"/><!--golden mug-->
        </inside>
    </item>
</loot>
 

Attachments

Last edited:
my unprofessional guess would be that you have an open <monster> tag at the beginning but no closing </monster> tag at the end
 
Back
Top