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

Can someone help?

Tibia Rox

Member
Joined
Feb 4, 2009
Messages
1,181
Reaction score
9
Location
U.S.A
Code:
[13/08/2010 01:16:51] [Warning - Monsters::loadMonster] Cannot load monster (Orshabaal) file (data/monster/Demon bosses/orshabaal.xml).
[13/08/2010 01:16:51] Line: 93, Info: Extra content at the end of the document

Im getting that when the server starts.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="orshabaal" nameDescription="a orshabaal" race="fire" experience="10000" speed="350" manacost="0">
  <health now="20500" max="20500"/>
  <look type="201" corpse="5995"/>
  <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="90"/>
    <flag runonhealth="2500"/>
  </flags>
	<attacks>
		<attack name="melee" interval="2000" skill="180" attack="180"/>
		<attack name="physical" interval="3000" chance="15" radius="5" target="0" min="-320" max="-910">
			<attribute key="areaEffect" value="blackspark"/>
		</attack>
		<attack name="fire" interval="2000" chance="16" range="7" radius="7" target="1" min="-310" max="-740">
			<attribute key="shootEffect" value="fire"/>
			<attribute key="areaEffect" value="firearea"/>
		</attack>
		<attack name="firefield" interval="1000" chance="10" range="7" radius="4" target="1">
			<attribute key="shootEffect" value="fire"/>
		</attack>
		<attack name="lifedrain" interval="4000" chance="19" length="8" spread="0" min="-500" max="-1300">
			<attribute key="areaEffect" value="purpleenergy"/>
		</attack>
	</attacks>
	<defenses armor="50" defense="48">
		<defense name="healing" interval="1000" chance="9" min="200" max="500">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="healing" interval="1000" chance="12" min="100" max="200">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
		<defense name="speed" interval="1000" chance="5" speedchange="400" duration="7000">
			<attribute key="areaEffect" value="redshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element icePercent="-15"/>
		<element deathPercent="35"/>
		<element holyPercent="-25"/>
	</elements>
	<immunities>
		<immunity earth="1"/>
		<immunity fire="1"/>
		<immunity lifedrain="1"/>
		<immunity paralyze="1"/>
		<immunity invisible="1"/>
	</immunities>
	<summons maxSummons="4">
		<summon name="demon" interval="2500" chance="25"/>
	</summons>
	<voices interval="5000" chance="10">
		<voice sentence="PRAISED BE MY MASTERS, THE RUTHLESS SEVEN!" yell="1"/>
		<voice sentence="YOU ARE DOOMED!" yell="1"/>
		<voice sentence="ORSHABAAL IS BACK!" yell="1"/>
		<voice sentence="Be prepared for the day my masters will come for you!"/>
		<voice sentence="SOULS FOR ORSHABAAL!" yell="1"/>
	</voices>

	<loot>
		<item id="2149" countmax="100"  chance="100000" /> -- gold coin
		<item id="2149" countmax="100"  chance="100000" /> -- gold coin
		<item id="2149" countmax="89"  chance="100000" /> -- gold coin
		<item id="2152" countmax="24"  chance="80000" /> -- platinum coin
		<item id="9971" countmax="4"  chance="40000" /> -- gold ignot
		<item id="6500" countmax="5"  chance="50000" /> -- demonic essence
		<item id="5954" countmax="2"  chance="15000" /> -- demon horn
		<item id="1984" countmax="1"  chance="1000" /> -- blue tome
		<item id="1987" chance="1000000" /> -- bag
			<inside>
				<item id="1985" chance="1000" /> -- grey tome
				<item id="5808" chance="2000" /> -- orshabaal's brain
				<item id="2421" chance="4000" /> -- thunder hammer
				<item id="2522" chance="10000" /> -- great shield
				<item id="2472" chance="10000" /> -- magic plate armor
				<item id=2390"" chance="200" /> -- magic longsword
				<item id="2494" chance="1000" /> -- demon armor
				<item id="2195" chance="10000" /> -- boots of haste
				<item id="8868" chance="1200" /> -- velvet mantle
			</inside>
		</item>
	</loot>
[COLOR="lime"]</monster>[/COLOR]

line 93

Thats the file...
Whats wrong?
 
Code:
<item id="1987" chance="1000000" /> -- bag
just delete "/" at end, like :
Code:
<item id="1987" chance="1000000"> -- bag
 
Last edited:
With countmax it is
Code:
<item id="1984" countmax="1"  chance="1000" [COLOR="red"]/>[/COLOR]
but without countmax you have to set
Code:
<item id="2472" chance="10000"[COLOR="red"]>[/COLOR]
 
Back
Top