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

High Exp monster needed

HappyFeet

New Member
Joined
Nov 8, 2012
Messages
244
Reaction score
3
Location
Netherlands
Just finding a balance between monsters is not the best thing I can... I hope someone can give me some mobs for a high exp server so I can use them.
8.6 server
custom map
exp = 9999999

skype : ricokrouweel
 
Just take an exsisting monster add some hp and damage, shure you can make it in an nicer way but try yourself.
 
Here's a simple edited monster for level 3k~
It is however balanced with around exp = 700

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Hammering Giant" nameDescription="a hammering giant" race="blood" experience="580000" speed="340" manacost="0">
    <health now="102500" max="102500"/>
    <look type="247" corpse="6516"/>
    <targetchange interval="5000" chance="20"/>
    <strategy attack="100" defense="0"/>
    <flags>
        <flag summonable="0"/>
        <flag attackable="1"/>
        <flag hostile="1"/>
        <flag illusionable="1"/>
        <flag convinceable="0"/>
        <flag pushable="0"/>
        <flag canpushitems="1"/>
        <flag canpushcreatures="1"/>
        <flag targetdistance="1"/>
        <flag staticattack="90"/>
        <flag runonhealth="500"/>
    </flags>
    <attacks>
        <attack name="melee" interval="1500" skill="800" attack="800" poison="200"/>
        <attack name="earth" interval="4000" chance="30" range="7" radius="4" target="0" min="-6000" max="-11000">
            <attribute key="areaEffect" value="poison"/>
        </attack>
        <attack name="poison" interval="5000" chance="37" length="4" spread="3" min="-1000" max="-8500">
            <attribute key="areaEffect" value="yellowbubble"/>
        </attack>
        <attack name="speed" interval="2000" chance="40" range="1" target="0" speedchange="-800" duration="30000">
            <attribute key="areaEffect" value="greenshimmer"/>
        </attack>
    </attacks>
    <defenses armor="25" defense="25">
        <defense name="healing" interval="5000" chance="20" min="750" max="12500">
            <attribute key="areaEffect" value="blueshimmer"/>
        </defense>
        <defense name="speed" interval="4000" chance="35" speedchange="182" duration="6000">
            <attribute key="areaEffect" value="redshimmer"/>
        </defense>
    </defenses>
    <elements>
        <element earthPercent="100"/>
        <element firePercent="30"/>
        <element icePercent="20"/>
        <element deathPercent="20"/>
        <element energyPercent="-10"/>
        <element holyPercent="-99"/>
    </elements>
    <immunities>
        <immunity paralyze="1"/>
        <immunity invisible="1"/>
    </immunities>
    <voices interval="3000" chance="30">
        <voice sentence="You are looking a bit feverish today!"/>
        <voice sentence="You don't look that good!"/>
        <voice sentence="Hachoo!"/>
        <voice sentence="Cough Cough!"/>
    </voices>
    <loot>
    <item id="2160" countmax="7" chance="22500" /><!-- crystal coin -->
    <item id="2237" chance="59825" /><!-- dirty cape -->
    <item id="1987" chance="100000"><!-- bag -->
        <inside>
            <item id="5888" chance="850" /><!-- piece of hell steel -->
            <item id="2208" chance="4425" /><!-- axe ring -->
            <item id="5889" chance="1100" /><!-- piece of draconian steel -->
            <item id="5887" chance="1200" /><!-- piece of royal steel -->
            <item id="3957" chance="150" /><!-- war horn -->
        </inside>
    </item>
</loot>






</monster>
 
Back
Top