• 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 Monster one shots a player

jlskelin

New Member
Joined
Mar 28, 2009
Messages
198
Reaction score
1
i cant find the problem why this monsters one shots people the dmg is normal for highexp but people still get one shoted is it maybe the melee to high


Lua:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Madareth" nameDescription="Madareth" race="fire" experience="110000000" speed="380" manacost="0">
<health now="18000000" max="18000000"/>
<look type="12" head="77" body="116" legs="82" feet="79" corpse="6068"/>
<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="55"/>
    <flag runonhealth="0"/>
</flags>
<attacks>
    <attack name="melee" interval="2000" skill="30000" attack="1000000"/>
    <attack name="energy" interval="2000" chance="10" range="4" radius="4" min="-2000000" max="-6300000">
        <attribute key="areaEffect" value="energy"/>
        <attribute key="shootEffect" value="energyball"/>
    </attack>
</attacks>
<defenses armor="40" defense="46"/>
<elements>
    <element icePercent="15"/>
    <element deathPercent="-10"/>
</elements>
<immunities>
    <immunity energy="1"/>
    <immunity fire="1"/>
    <immunity invisible="1"/>
</immunities>
<voices interval="3000" chance="5">
    <voice sentence="I AM GOING TO PLAY WITH YOURSELF!" yell="1"/>
</voices>
<loot>
    <item id="9971" countmax="100" chance1="1000" />
    <item id="2514" chance="12650"/> --mastermind shield
    <item id="2214" chance="8000"/> --Roh
    <item id="2004" chance="100000">
        <inside>
            <item id="2520" chance="7650"/> --Demon shield
            <item id="2145" chance1="5800"/> --small amethyst
        </inside>
    </item>
</loot>
</monster>
 
You can use both skill and attack and min max values. With your old formula max damage was - prepare for a high number - 1 500 500 000. Not without reason people were one shooted lol.
 
Back
Top