• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Monster Azerus

Manx

New Member
Joined
Jul 25, 2008
Messages
174
Reaction score
1
Location
Mty ,Nl ,Mexico
Some people wanted it, so i posted it while i finish the pack.

:) It may need some changes.

Code:
 <?xml version="1.0" encoding="UTF-8"?>
<monster name="Azerus" nameDescription="azerus" race="blood" experience="6000" speed="320" manacost="0">
	<health now="7500" max="7500"/>
	<look type="309" head="19" body="96" legs="21" feet="81" corpse="0"/>
	<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="0"/>
		<flag pushable="0"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="1"/>
		<flag targetdistance="1"/>
		<flag staticattack="85"/>
		<flag runonhealth="0"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" skill="150" attack="140"/>
		<attack name="fire" interval="1000" chance="12" radius="4" target="0" min="-250" max="-500">
			<attribute key="areaEffect" value="firearea"/>
		</attack>
		<attack name="manadrain" interval="2000" chance="14" length="8" spread="0" min="-150000" max="-150000">
			<attribute key="areaEffect" value="teleport"/>
		</attack>
		<attack name="energy" interval="2000" chance="12" length="4" spread="0" min="-50" max="-1050">
			<attribute key="areaEffect" value="purpleenergy"/>
		</attack>
	</attacks>
	<defenses armor="40" defense="65">
		<defense name="healing" interval="1000" chance="11" min="400" max="900">
			<attribute key="areaEffect" value="greenshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element energyPercent="40"/>
		<element deathPercent="14"/>
		<element physicalPercent="-10"/>
	</elements>
	<immunities>
		<immunity paralyze="1"/>
		<immunity invisible="1"/>
	</immunities>
	<voices interval="5000" chance="12">
		<voice sentence="The ultimate will finally consume this unworthy existence!" />
		<voice sentence="My masters and I will tear down barriers and join the ultimate in its realm!" />
		<voice sentence="The power of the Yalahari will all be mine!" />
		<voice sentence="He who has returned from beyond has taught me secrets you can't even grasp!" />
		<voice sentence="You can't hope to penetrate my shields!"/>
		<voice sentence="Do you really think you could beat me?"/>
	</voices>
</monster>
 
Last edited:
Are you sure this works 100%?

Cus i cant summon it but it aswell doesnt show any error messages
 
i have the same problem i cant summon but it dont give anny error
 
You guys sure you added it to the monsters.xml file?
 
Ehm, do you mind telling me what you mean by that? I've been through the craziest things, so why shouldn't that be possible? In case you aimed it at me that is.
 
lol?

azerusuz2s.jpg


Nice Azerus :]
 
hmm you mean as corpse id ?

Yeah, you could set his corpse to ID 9738 - 9740 (not sure which one is used in Real Tibia)
Then, you could make a new item:
PHP:
<item id="9738" article="a" name="magic forcefield">
		<attribute key="description" value="You can see the other side through it."/>
		<attribute key="decayTo" value="0"/>
		<attribute key="duration" value="120"/>
	</item>

And, create a onStepIn movement for it.
 
Back
Top Bottom