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

Monsters attacking very fast in TFS 1.0

dominique120

Science & Reason
Senator
Premium User
Joined
Jun 16, 2013
Messages
3,881
Solutions
3
Reaction score
1,046
Location
Númenor
I'm upgrading a pack to 1.0 but the monsters are attacking very fast. Has the unit for the attack interval changed from TFS 0.4?
 
Are you able to post here an example monster from your server?

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Rotworm" nameDescription="a rotworm" race="blood" experience="40" speed="176" manacost="305">
    <health now="65" max="65"/>
    <look type="26" corpse="5967"/>
    <targetchange interval="2000" chance="0"/>
    <strategy attack="100" defense="0"/>
    <flags>
        <flag summonable="0"/>
        <flag attackable="1"/>
        <flag hostile="1"/>
        <flag illusionable="0"/>
        <flag convinceable="1"/>
        <flag pushable="0"/>
        <flag canpushitems="0"/>
        <flag canpushcreatures="0"/>
        <flag targetdistance="1"/>
        <flag staticattack="90"/>
        <flag runonhealth="0"/>
    </flags>
    <attacks>
        <attack name="melee" interval="2000" skill="30" attack="20"/>
    </attacks>
    <defenses armor="8" defense="11"/>
    <loot>
        <item id="2148" countmax="17" chance="71800"/>
        <item id="3976" countmax="3" chance="3010"/><!-- worm -->
        <item id="2666" countmax="2" chance="19950"/><!-- meat -->
        <item id="2671" countmax="2" chance="20130"/>
        <item id="2376" chance="3010"/><!-- sword -->
        <item id="2398" chance="4550"/><!-- mace -->
        <item id="10609" chance="9990"/><!-- lump of dirt -->
    </loot>
</monster>
 
It seems good. The interval is counted in milliseconds so your monster is correct. Maybe it is caused by script or something is changed in your source code.
 
Back
Top