• 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 Monster error

Tyhawk master

New Member
Joined
Jan 10, 2015
Messages
149
Reaction score
4
hey i am trying to add a custom monster that i created called Durp. i have changed the name inside the Custommonsters.xml and inside the mods/custom/monsters folder and i get a error inside Remeres map editor saying it can not open the Creature. How do i fix this ?

Ops sorry im using cryingdamnson 0.3.6 Tibia 8.6
 
Last edited by a moderator:
Move the XML file to data/monster and add it to data/monster/monsters.XML
If you still get the error line, you have a error in the XML monster file, you can check it with NotePad++
 
1) i can not summon with a god account says "sorry not possible" and 2) i create it through the mod because its one of the custom monsters in the mod folder.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Durp" nameDescription="Durp" race="blood" experience="59000" speed="1250" manacost="0">
    <health now="12430" max="12430"/>
    <look type="165" corpse="1749"/>
    <targetchange interval="5000" chance="8"/>
    <strategy attack="10000" defense="100"/>
    <flags>
        <flag summonable="0"/>
        <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="429"/>
        <flag skull="yellow"/>
    </flags>
    <attacks>
        <attack name="melee" interval="1000" skill="120" attack="300"/>
    </attacks>
    <voices interval="5000" chance="10">
        <voice sentence="TYHAWK IS MY LEADER AND YOU WILL NEVER DEFEAT ME"/>
        <voice sentence="FEAL MY POWERFUL ATTACKS!"/>
        <voice sentence="I WILL SHASH U UP"/>
        <voice sentence="I WILL TAKE YOUR SOULS"/>
        <voice sentence="I WILL OPEN YOU UP FASTER THAN U CAN OPEN ME"/>
        <voice sentence="INSIDE ME LIES A DIRTY DILDO"/>
        <voice sentence="dont you just wish people will leave you alone"/>
        <voice sentence="Here have my items. SIKE"/>
    </voices>
    <loot>
        <item id="2160" countmax "90" chance "100000"
        <item id="2160" countmax "1" chance "100000"
        </item>
    </loot>
</monster>
 
Last edited by a moderator:
<loot>
<item id="2160" countmax="90" chance="100000"/>
<item id="2160" countmax="1" chance="100000"/>
</item>
</loot>

~~~~

Green is what's missing, red is what should be removed.
What I posted was how it should look like.
You can use the site I linked if you have problems with xml files, it will show which part is wrong.
 
Back
Top