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

Snakie

New Member
Joined
Apr 15, 2010
Messages
263
Reaction score
4
So i made a monster but it cant attack people if they use "utana vid" where can i change that?

Heres the monster script.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Ap Javel" nameDescription="a Ap Javel" race="blood" experience="150000" speed="200" manacost="0">
    <health now="60000" max="60000"/>
    <look type="116" corpse="6043"/>
    <targetchange interval="5000" chance="20"/>
    <strategy attack="100" defense="0"/>
    <flags>
        <flag summonable="0"/>
        <flag attackable="0"/>
        <flag hostile="0"/>
        <flag illusionable="0"/>
        <flag convinceable="0"/>
        <flag pushable="0"/>
        <flag canpushitems="1"/>
        <flag canpushcreatures="1"/>
        <flag targetdistance="0"/>
        <flag staticattack="90"/>
        <flag runonhealth="0"/>
    </flags>
    <attacks>
        <attack name="melee" interval="2000" min="-500" max="-2600"/>
    </attacks>
    <defenses armor="18" defense="14">
        <defense name="speed" interval="1000" chance="7" speedchange="260" duration="3000">
            <attribute key="areaEffect" value="redshimmer"/>
        </defense>
    </defenses>
    <elements>
        <element firePercent="20"/>
        <element earthPercent="10"/>
        <element energyPercent="5"/>
        <element icePercent="-15"/>
        <element deathPercent="-5"/>
    </elements>
    <voices interval="5000" chance="10">
        <voice sentence="Hugah!"/>
        <voice sentence="Ungh! Ungh!"/>
        <voice sentence="Huaauaauaauaa!"/>
    </voices>
    <loot>
        <item id="2148" chance="100000" countmax="40"/>
        <item id="5883" chance="6000"/>
        <item id="1987" chance="100000">
            <inside>
                <item id="2160" chance="5000" countmax="3"/>
				<item id="2676" chance="5000" countmax="11"/>
                <item id="2200" chance="2000"/>
                <item id="2463" chance="1667"/>
                <item id="7618" chance="1467"/>
            </inside>
        </item>
    </loot>
</monster>
 
Lua:
<immunities>
<immunity lifedrain="1"/>
<immunity paralyze="1"/>
<immunity invisible="1"/>
</immunities>
 
Back
Top