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

2 monsters

shizo88

New Member
Joined
Mar 10, 2009
Messages
7
Reaction score
0
Anyone have scripts for Eye of Seven and Dreadbeast? Please share them with me, I cant find them.
 
Dreadbeast -- Loot not finished
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Dreadbeast" nameDescription="a dreadbeast" race="UNDEAD" experience="250" speed="210" manacost="800">
  <health now="800" max="800"/>
  <look type="101" head="20" body="30" legs="40" feet="50" corpse="6030"/>
  <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="1"/>
    <flag pushable="0"/>
    <flag canpushitems="1"/>
    <flag canpushcreatures="1"/>
    <flag targetdistance="1"/>
    <flag staticattack="90"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="melee" interval="2000" min="0" max="-50"/>
    <attack name="drown" interval="2000" chance="34" range="5" target="1" min="-70" max="-90">
      <attribute key="areaEffect" value="iceattack"/>
	  <attribute key="shootEffect" value="suddendeath"/>
    </attack>
	<attack name="lifedrain" interval="2000" chance="40" range="5" target="1" min="0" max="0">
      <attribute key="areaEffect" value="yellowenergy"/>
	  <attribute key="shootEffect" value="energy"/>
    </attack>
	<attack name="lifedrain" interval="2000" chance="35" range="5" target="1" min="0" max="0">
      <attribute key="areaEffect" value="purpleenergy"/>
	  <attribute key="shootEffect" value="energy"/>
    </attack>
    </attacks>
  <defenses armor="20" defense="35"/>
  	<elements>
		<element physicalPercent="30"/>
		<element firePercent="55"/>
		<element energyPercent="15"/>
		<element icePercent="40"/>
		<element drownPercent="75"/>
		<element holyPercent="-50"/>
	</elements>
  <immunities>
    <immunity death="1"/>
    <immunity earth="1"/>
    <immunity lifedrain="1"/>
    <immunity paralyze="1"/>
    <immunity invisible="1"/>
  </immunities>
  <loot>
    <item id="2148" countmax="80" chance1="80000" chancemax="0"/>
    <item id="2229" countmax="1" chance1="21190" chancemax="0"/>
    <item id="2231" chance="9730"/>
	<item id="2230" chance="51810"/>
    <item id="2463" chance="7540"/>
    <item id="5925" countmax="1" chance1="1000" chancemax="0"/>
    <item id="1987" chance="100000">
      <inside>
        <item id="2541" chance="1880"/>
        <item id="2148" countmax="40" chance1="50000" chancemax="0"/>
        <item id="2796" countmax="1" chance1="2200" chancemax="0"/>
        <item id="2449" chance="4080"/>
		<item id="7618" chance="160"/>
      </inside>
    </item>
  </loot>
</monster>
 
Eye of the Seven

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Eye of the seven" nameDescription="an eye of the seven" race="VENOM" experience="90" speed="0" manacost="0">
  <health now="1" max="1"/>
  <look type="109" head="20" body="30" legs="40" feet="50" corpse="6036"/>
  <targetchange interval="5000" chance="0"/>
  <strategy attack="100" defense="0"/>
  <flags>
    <flag summonable="0"/>
    <flag attackable="1"/>
    <flag hostile="1"/>
    <flag illusionable="1"/>
    <flag convinceable="0"/>
    <flag pushable="0"/>
    <flag canpushitems="1"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="10"/>
    <flag staticattack="90"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="ice" interval="1000" chance="50" range="10" min="-250" max="-350">
      <attribute key="areaEffect" value="iceattack"/>
	  <attribute key="shootEffect" value="ice"/>
    </attack>
    <attack name="fire" interval="1000" chance="50" range="10" min="-250" max="-350">
      <attribute key="areaEffect" value="fireattack"/>
	  <attribute key="shootEffect" value="fire"/>
    </attack>
  </attacks>
  <defenses armor="1999" defense="1999"/>
  <immunities>
    <immunity physical="1"/>
    <immunity holy="1"/>
    <immunity energy="1"/>
    <immunity fire="1"/>
    <immunity death="1"/>
    <immunity earth="1"/>
    <immunity ice="1"/>
    <immunity poison="1"/>
    <immunity lifedrain="1"/>
    <immunity invisible="0"/>
  </immunities>
</monster>

@Cykotitan
Thanxs for the Dreadbeast :)
 
Back
Top Bottom