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

Not RL Summons

MxSoft

Leave Tibia, Live Life.
Joined
Dec 22, 2009
Messages
1,804
Solutions
1
Reaction score
44
Location
Mexico
Hi, in my Server people is summoning monterslike rocko or The Axeorcist, how can i disbale this?
Greetings
 
In the monsters xml file.

Example
Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Sea Serpent" nameDescription="a sea serpent" race="blood" experience="2300" speed="658" manacost="390">
	<health now="3200" max="3200"/>
	<look type="275" corpse="8307"/>
	<targetchange interval="2000" chance="50"/>
	<strategy attack="100" defense="0"/>
	<flags>
		[I][COLOR="red"]<flag summonable="0"/>[/COLOR][/I] 
		<flag attackable="1"/>
		<flag hostile="1"/>
		<flag illusionable="0"/>
		<flag convinceable="0"/>
		<flag pushable="0"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="1"/>
		<flag targetdistance="0"/>
		<flag runonhealth="300"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" skill="40" attack="100"/>
		<attack name="earth" interval="1000" chance="8" length="9" spread="3" min="-60" max="-275">
			<attribute key="areaEffect" value="bigplants"/>
		</attack>
		<attack name="ice" interval="1000" chance="10" length="9" spread="3" min="-120" max="-300">
			<attribute key="areaEffect" value="icearea"/>
		</attack>
		<attack name="drown" interval="1000" chance="11" radius="4" target ="1" min ="-15" max="-20">
			<attribute key="areaEffect" value="bluebubble"/>
		</attack>
	</attacks>
	<defenses armor="16" defense="25">
		<defense name="healing" interval="1000" chance="25" min="50" max="150">
			<attribute key="areaEffect" value="blueshimmer"/>
		</defense>
	</defenses>
	<immunities>
		<immunity ice="1"/>
		<immunity paralyze="1"/>
		<immunity invisible="1"/>
		<immunity drown="1"/>
	</immunities>
	<voices interval="3000" chance="200">
		<voice sentence="CHHHRRRR"/>
		<voice sentence="HISSSS"/>
	</voices>
	<elements>
		<element firePercent="30"/>
		<element energyPercent="-5"/>
		<element physicalPercent="-10"/>
		<element deathPercent="10"/>
	</elements>
	<immunities>
	<immunity ice="1"/>
	<immunity invisible="1"/>
	<immunity paralyze="1"/>
	</immunities>
	<loot>
    <item id="7588" chance="5250" /><!-- strong health potion -->
    <item id="7589" chance="3900" /><!-- strong mana potion -->
    <item id="7590" chance="1000" /><!-- great mana potion -->
    <item id="2409" chance="4200" /><!-- serpent sword -->
    <item id="8911" chance="1050" /><!-- northwind rod -->
    <item id="8870" chance="2850" /><!-- spirit cloak -->
    <item id="8871" chance="350" /><!-- focus cape -->
    <item id="2647" chance="7000" /><!-- plate legs -->
    <item id="2214" chance="1275" /><!-- ring of healing -->
    <item id="10582" chance="10250" /><!-- sea serpent scale -->
    <item id="1987" chance="100000"><!-- bag -->
        <inside>
            <item id="2672" chance="59950" /><!-- dragon ham -->
            <item id="2148" countmax="100" chance="37425" /><!-- gold coin -->
            <item id="2148" countmax="100" chance="37425" /><!-- gold coin -->
            <item id="2148" countmax="43" chance="37425" /><!-- gold coin -->
            <item id="2146" countmax="3" chance="2775" /><!-- small sapphire -->
            <item id="7896" chance="400" /><!-- glacier kilt -->
            <item id="2165" chance="375" /><!-- stealth ring -->
            <item id="7888" chance="925" /><!-- glacier amulet -->
            <item id="10220" chance="100" /><!-- leviathan's amulet -->
            <item id="8878" chance="50" /><!-- crystalline armor -->
        </inside>
    </item>
</loot>
</monster>

0 = No
1 = Yes
 
Back
Top