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

Windows error in monsters

JonatasLucas

New Member
Joined
Jun 12, 2013
Messages
116
Reaction score
3
so guys could someone tell me that error is that I'm using version 1.1 tfs 10.76

eb7456428233c2e81c0eaa2b93929dff3751d3cb.png


zeus.xml

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Zeus" nameDescription="a zeus" race="blood" experience="10000000" speed="5000" manacost="0">
<health now="1000000" max="1000000"/>
<look type="332" head="20" body="30" legs="40" feet="50" corpse="6038"/>
<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="1"/>
<flag targetdistance="1"/>
<flag staticattack="60"/>
<flag runonhealth="0"/>
</flags>
<attacks>
<attack name="melee" interval="1500" skill="3500" attack="3500"/>
<attack name="fire" interval="1300" chance="10" range="4" radius="7" target="1" min="-8000" max="-15000">
<attribute key="shootEffect" value="fire"/>
<attribute key="areaEffect" value="fire"/>
</attack>
<attack name="speed" interval="2000" chance="65" range="7" speedchange="-7500" duration="40000">
<attribute key="areaEffect" value="redshimmer"/>
</attack>
</attacks>
<defenses armor="68" defense="63"/>
<immunities>
<immunity fire="1"/>
<immunity poison="0"/>
<immunity paralyze="1"/>
<immunity outfit="1"/>
<immunity lifedrain="1"/>
<immunity drunk="1"/>
<immunity invisible="1"/>
<immunity holy="1"/>
</immunities>
<voices interval="5000" chance="10">
<voice sentence="BwHaHaH-ha!"/>
</voices>
<summons maxSummons="4">
<summon name="dona morte" interval="500" chance="30" max="10"/>
</summons>
<loot>
<item id="2144" countmax="9" chance="30000"/>  -- Black Pearl
<item id="2174" chance="2500"/>  -- Strange Symbal
<item id="2153" chance="1800"/>  -- Violet Gem
<item id="2152" countmax="9" chance="50000"/>  -- Platinum Coin
<item id="2158" chance="2000"/>  -- Blue Gem
<item id="2152" countmax="9" chance="5000"/>  -- Platinum Coin
<item id="2148" countmax="20" chance="50000"/>  -- Gold Coin
<item id="2495" chance="500"/>  -- Demon Legs
<item id="2522" chance="800"/>  -- Great Shield
<item id="2472" chance="1200"/>  -- Magic Plate Armor
<item id="2646" chance="1500"/>  -- Golden Boots
<item id="9971" countmax="15" chance="4000"/>  -- Barras de Ouro
</loot>
</monster>
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Zeus" nameDescription="a zeus" race="blood" experience="10000000" speed="5000" manacost="0">
    <health now="1000000" max="1000000"/>
    <look type="332" head="20" body="30" legs="40" feet="50" corpse="6038"/>
    <targetchange interval="5000" chance="8"/>
    <stratey 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="1"/>
        <flag targetdistance="1"/>
        <flag staticattack="60"/>
        <flag runonhealth="0"/>
    </flags>
    <attacks>
        <attack name="melee" interval="1500" skill="3500" attack="3500"/>
        <attack name="fire" interval="1300" chance="10" range="4" radius="7" target="1" min="-8000" max="-15000">
    target="1" min="-8000" max="-15000">
            <attribute key="shootEffect" value="fire"/>
            <attribute key="areaEffect" value="fire"/>
        </attack>
        <attack name="speed" range="7" interval="2000" chance="65"/>
        speedchange="-7500" duration="40000">
            <attribute key="areaEffect" value="redshimmer"/>
    </attacks>
    <defenses armor="68" defense="63"/>
    <immunities>
        <immunity fire="1"/>
        <iimunity poison="0"/>
        <immunity paralyze="1"/>
        <immunity outfit="1"/>
        <immunity lifedrain="1"/>
        <immunity drunk="1"/>
        <immunity invisible="1"/>
        <immunity holy="1"/>
    </immunities>
    <summons maxSummons="4">
        <summon name="dona morte" interval="500" chance="30" max="10"/>
    </summons>
    <voices interval="5000" chance="10">
        <voice sentence="To me, creatures of the wild!"/>
        <voice sentence="My instincts tell me about your cowardice."/>
    </voices>
    <loot>
        <item id="2144" countmax="9" chance="30000"/>  -- Black Pearl
        <item id="2174" chance="2500"/>  -- Strange Symbal
        <item id="2153" chance="1800"/>  -- Violet Gem
        <item id="2152" countmax="9" chance="50000"/>  -- Platinum Coin
        <item id="2158" chance="2000"/>  -- Blue Gem
        <item id="2152" countmax="9" chance="5000"/>  -- Platinum Coin
        <item id="2148" countmax="20" chance="50000"/>  -- Gold Coin
        <item id="2495" chance="500"/>  -- Demon Legs
        <item id="2522" chance="800"/>  -- Great Shield
        <item id="2472" chance="1200"/>  -- Magic Plate Armor
        <item id="2646" chance="1500"/>  -- Golden Boots
        <item id="9971" countmax="15" chance="4000"/>  -- Barras de Ouro
    </loot>
</monster>

Make sure you have one in monster.xml
and that items.otb are correct :) I hope it helped
 
Back
Top