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

Solved Slime clone 7.60 problem

lunara

Member
Joined
Dec 20, 2014
Messages
140
Reaction score
8
Hi!
My friend we was playing on my server and try skill with slime but doesn't clone or summon more slime
using avesta 760
slime xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="slime2" nameDescription="a slime2" race="VENOM" experience="260" speed="120" manacost="0">
  <health now="150" max="150"/>
  <look type="19" head="20" body="30" legs="40" feet="50" corpse="1496"/>
  <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="0"/>
    <flag canpushitems="1"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="1"/>
    <flag staticattack="90"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="melee" interval="2000" skill="22" attack="42" poison="90"/>
    <attack name="poisonfield" interval="1000" chance="17" range="7" radius="1" target="1">
      <attribute key="shootEffect" value="poison"/>
    </attack>
  </attacks>
  <defenses armor="3" defense="10"/>
  <immunities>
    <immunity physical="0"/>
    <immunity energy="0"/>
    <immunity fire="0"/>
    <immunity poison="1"/>
    <immunity lifedrain="0"/>
    <immunity paralyze="0"/>
    <immunity outfit="0"/>
    <immunity drunk="0"/>
    <immunity invisible="0"/>
  </immunities>
  <voices interval="5000" chance="10">
    <voice sentence="Blubb"/>
  </voices>
</monster>
repp+
 
You are missing the summons tag, like in 1.x version of slime.
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Slime" nameDescription="a slime" race="venom" experience="160" speed="180" manacost="0">
    <health now="150" max="150" />
    <look type="19" corpse="1496" />
    <targetchange interval="4000" chance="10" />
    <flags>
        <flag summonable="0" />
        <flag attackable="1" />
        <flag hostile="1" />
        <flag illusionable="0" />
        <flag convinceable="0" />
        <flag pushable="0" />
        <flag canpushitems="1" />
        <flag canpushcreatures="0" />
        <flag targetdistance="1" />
        <flag staticattack="90" />
        <flag runonhealth="0" />
    </flags>
    <attacks>
        <attack name="melee" interval="2000" skill="45" attack="40" />
    </attacks>
    <defenses armor="15" defense="15" />
    <elements>
        <element icePercent="20" />
        <element firePercent="-10" />
        <element energyPercent="-10" />
    </elements>
    <immunities>
        <immunity earth="1" />
    </immunities>
    <voices interval="5000" chance="10">
        <voice sentence="Blubb" />
    </voices>
    <summons maxSummons="3">
        <summon name="Slime" interval="2000" chance="10" />
    </summons>
</monster>
 
You are missing the summons tag, like in 1.x version of slime.
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Slime" nameDescription="a slime" race="venom" experience="160" speed="180" manacost="0">
    <health now="150" max="150" />
    <look type="19" corpse="1496" />
    <targetchange interval="4000" chance="10" />
    <flags>
        <flag summonable="0" />
        <flag attackable="1" />
        <flag hostile="1" />
        <flag illusionable="0" />
        <flag convinceable="0" />
        <flag pushable="0" />
        <flag canpushitems="1" />
        <flag canpushcreatures="0" />
        <flag targetdistance="1" />
        <flag staticattack="90" />
        <flag runonhealth="0" />
    </flags>
    <attacks>
        <attack name="melee" interval="2000" skill="45" attack="40" />
    </attacks>
    <defenses armor="15" defense="15" />
    <elements>
        <element icePercent="20" />
        <element firePercent="-10" />
        <element energyPercent="-10" />
    </elements>
    <immunities>
        <immunity earth="1" />
    </immunities>
    <voices interval="5000" chance="10">
        <voice sentence="Blubb" />
    </voices>
    <summons maxSummons="3">
        <summon name="Slime" interval="2000" chance="10" />
    </summons>
</monster>
Thanks! solved <3
 
Back
Top