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

TFS 1.X+ monster bugged

bpm91

Intermediate OT User
Joined
May 23, 2019
Messages
931
Solutions
7
Reaction score
127
Location
Brazil
YouTube
caruniawikibr
I don't know why but for example, trolls have this problem of finding a way to find the player.
tfs 1.5
1711310328336.png


Lua:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Troll" nameDescription="a troll" race="blood" experience="20" speed="126" manacost="290">
    <health now="50" max="50"/>
    <look type="15" head="0" body="0" legs="0" feet="0" corpse="2806"/>
    <targetchange interval="4000" chance="0" />
    <flags>
        <flag summonable="1" />
        <flag attackable="1" />
        <flag hostile="1" />
        <flag illusionable="1" />
        <flag convinceable="1" />
        <flag pushable="1" />
        <flag canpushitems="0" />
        <flag canpushcreatures="0" />
        <flag targetdistance="1" />
        <flag staticattack="90" />
        <flag runonhealth="15" />
        <flag canwalkonenergy="0" />
        <flag canwalkonfire="0" />
        <flag canwalkonpoison="0" />
    </flags>
    <attacks>
        <attack name="melee" skill="15" attack="10"/>
    </attacks>
    <defenses armor="6" defense="8">
    </defenses>
    <immunities>
        <immunity fire="0"/>
        <immunity energy="0"/>
        <immunity poison="0"/>
        <immunity physical="0"/>
        <immunity outfit="0"/>
        <immunity lifedrain="0"/>
        <immunity paralyze="0"/>
        <immunity invisible="0"/>
    </immunities>
    <voices interval="5000" chance="10">
        <voice sentence="Grrrr" />
        <voice sentence="Groar" />
        <voice sentence="Gruntz!" />
        <voice sentence="Hmmm, bugs." />
        <voice sentence="Hmmm, dogs." />
    </voices>
    <loot>
        <item id="2512" countmax="1" chance="15000"/><!-- wooden shield -->
        <item id="2448" countmax="1" chance="5000"/><!-- studded club -->
        <item id="2389" countmax="1" chance="20000"/><!-- spear -->
        <item id="2170" countmax="1" chance="100"/><!-- silver amulet -->
        <item id="2120" countmax="1" chance="8000"/><!-- rope -->
        <item id="2666" countmax="1" chance="15000"/><!-- meat -->
        <item id="2461" countmax="1" chance="10000"/><!-- leather helmet -->
        <item id="2643" countmax="1" chance="10000"/><!-- leather boots -->
        <item id="2380" countmax="1" chance="18000"/><!-- hand axe -->
        <item id="2148" countmax="10" chance="60000"/><!-- gold coin -->
    </loot>
</monster>
 
Back
Top