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

Earth Stone summon HP

Velory

New Member
Joined
Jul 7, 2011
Messages
44
Reaction score
0
Hey I have a problem in terms of the teeth to do this "earth stone" summon monsters, depending on HP.

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Earth Stone" nameDescription="a Earth Stone" race="blood" experience="5000000" speed="0" manacost="33000">
    <health now="1000000" max="1000000"/>
    <look typeex="1353" corpse="0"/>
    <targetchange interval="2000" chance="0"/>
    <strategy attack="0" defense="0"/>
    <flags>
<flag summonable="0"/>
<flag attackable="1"/>
<flag hostile="1"/>
<flag illusionable="0"/>
<flag convinceable="0"/>
<flag pushable="0"/>
<flag canpushitems="1"/>
<flag canpushcreatures="0"/>
<flag targetdistance="0"/>
<flag staticattack="0"/>
<flag runonhealth="550"/>
    </flags>
    <defenses name="healing" interval="4000" chance="11" min="580" max="1100">
      <attribute key="areaEffect" value="greenshimmer"/>
    </defenses>
    <elements>
     <element deathPercent="30"/>
     <element physicalPercent="30"/>
     <element holyPercent="40"/>
     <element firePercent="-15"/>
    </elements>
</monster>


summon depending on HP. down

PHP:
90% - 3x Hydra, 5x Bog Raider, 3x Plaguesmith.
70% - 3x Defiler, 2x Hellhound, 3x Plaguesmith, 4x Medusa.
50% - 3x Hellhound, 1x Azerus, 1x Defiler, 3x Plaguesmith, 2x Phantasm.
40% - 3x Massacre, 1x Azerus.
20% - 3x Juggernaut, 2x Azerus, 2x Defiler, 1x Hellhound.
5% - 3x Juggernaut, 2x Azerus, 2x Defiler, 4x Hellhound, 3x Plaguesmith, 2x Phantasm.


how do???? ; d






HELP REPP++
 
Lua:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Earth Stone" nameDescription="a Earth Stone" race="blood" experience="5000000" speed="0" manacost="33000">
    <health now="1000000" max="1000000"/>
    <look typeex="1353" corpse="0"/>
    <targetchange interval="2000" chance="0"/>
    <strategy attack="0" defense="0"/>
    <flags>
<flag summonable="0"/>
<flag attackable="1"/>
<flag hostile="1"/>
<flag illusionable="0"/>
<flag convinceable="0"/>
<flag pushable="0"/>
<flag canpushitems="1"/>
<flag canpushcreatures="0"/>
<flag targetdistance="0"/>
<flag staticattack="0"/>
<flag runonhealth="550"/>
    </flags>
    <defenses name="healing" interval="4000" chance="11" min="580" max="1100">
      <attribute key="areaEffect" value="greenshimmer"/>
    </defenses>
    <elements>
     <element deathPercent="30"/>
     <element physicalPercent="30"/>
     <element holyPercent="40"/>
     <element firePercent="-15"/>
    </elements>
    <summons maxSummons="5">
         --90%
		<summon name="Hydra" interval="3000" chance="12" max="3"/>
		<summon name="Bog Raider" interval="3001" chance="12" max="5"/>
		<summon name="Plaguesmith" interval="3002" chance="12" max="3"/>
		 -- 70%
        <summon name="Defiler" interval="3005" chance="13" max="3"/>
		<summon name="Hellhound" interval="3006" chance="13" max="2"/>
		<summon name="Plaguesmith" interval="3007" chance="13" max="3"/>
		<summon name="Medusa" interval="3008" chance="13" max="4"/>
		-- 50%
		<summon name="Hellhound" interval="3010" chance="15" max="3"/>
		<summon name="Azerus" interval="3012" chance="15" max="1"/>
		<summon name="Defiler" interval="3013" chance="15" max="1"/>
		<summon name="Plaguesmith" interval="3015" chance="13" max="3"/>
	    <summon name="Phantasm" interval="3016" chance="15" max="2"/>
	    -- 40%	 
		<sumon name="Massacre" interval="3020" chance="15" max="3"/>
		<summon name="Azerus" interval="3021" chance="15" max="1"/>
		-- 20%
		<summon name="Juggernaut" interval="3026" chance="15" max="3"/>
		<summon name="Azerus" interval="3027" chance="15" max="2"/>
		<summon name="Defiler" interval="3029" chance="13" max="2"/>
	    <summon name="Hellhound" interval="3030" chance="15" max="1"/>
	    --  5%
	    <summon name="Juggernaut" interval="3035" chance="13" max="3"/>
	    <summon name="Azerus" interval="3040" chance="13" max="2"/>
	    <summon name="Defiler" interval="3041" chance="13" max="2"/>
	    <summon name="Hellhound" interval="3043" chance="13" max="4"/>
	    <summon name="Plaguesmith" interval="3045" chance="13" max="3"/>
	    <summon name="Phantasm" interval="3050" chance="13" max="2"/>
	   	    
	</summons>
</monster>
 
Back
Top