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

Pox monster 7.6

gianflogao

Member
Joined
Jun 6, 2014
Messages
134
Solutions
2
Reaction score
13
Lua:
<?xml version="1.0"?>
<monster name="Theraphosid" level="420" maglevel="40" experience="47500" pushable="0" speed="214"  armor="3" defense="5" canpushitems="0" staticattack="50" changetarget="200">
    <health now="45000" max="45000"/>
    <look type="219" corpse="4320"/>
    <combat targetdistance="1" runonhealth="0"/>
    <blood color="30" effect="16" splash="4"/>

<attacks>
    <attack type="melee" maxdamage="1300" cycleticks="2500" probability="100"/>
    <attack type="melee" mindamage="1250" maxdamage="2350" cycleticks="2000" probability="100"/>
</attacks>

<defenses>
    <defense immunity="manadrain"/>
    <defense immunity="invisible"/>
    <defense immunity="paralyze"/>
    <defense immunity="drunk"/>
</defenses>

<loot>
     <item id="2148" countmax="20" chance1="100000" chancemax="0"/>
    <item id="2483" chance="10000"/>
    <item id="2647" chance="5000"/>
    <item id="2457" chance="8000"/>
</loot>

</monster>

How do I put in the monster pox attack of 1000 per second?
 
What is pox?
If you want to make it attacking faster then just change cycleticks:
Code:
<attack type="melee" mindamage="250" maxdamage="300" cycleticks="500" probability="100"/>
 
Solved

Lua:
<attack type="poison_melee" maxdamage="20" probability="100" maxhits="40" maxhitsdamage="20"/>
 
Solution
Back
Top