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

Some one please help me do this gosh.

KyoyaNET

New Member
Joined
Jun 20, 2013
Messages
59
Reaction score
1
The rabbits in my server stalk me, but since the hostile = 0, the dont attack, just stalk...
How do I make them mind their own business!!!

- - - Updated - - -

<?xml version="1.0" encoding="UTF-8"?>
<monster name="Rabbit" nameDescription="a rabbit" race="blood" experience="0" speed="180" manacost="220">
<health now="15" max="15"/>
<look type="74" corpse="6017"/>
<targetchange interval="5000" chance="20"/>
<strategy attack="100" defense="0"/>
<flags>
<flag summonable="1"/>
<flag attackable="1"/>
<flag hostile="0"/>
<flag illusionable="1"/>
<flag convinceable="1"/>
<flag pushable="1"/>
<flag canpushitems="0"/>
<flag canpushcreatures="0"/>
<flag targetdistance="0"/>
<flag staticattack="90"/>
<flag runonhealth="0"/>
</flags>
<attacks>
<attack name="melee" interval="2000" skill="0" attack="0"/>
</attacks>
<defenses armor="1" defense="2"/>
<loot>
<item id="2684" countmax="2" chance="9000"/><!-- carrot -->
<item id="2666" countmax="2" chance="20000"/><!-- meat -->
</loot>
</monster>
 
try this one

Code:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Rabbit" nameDescription="a rabbit" race="blood" experience="0" speed="180" manacost="220">
	<health now="15" max="15"/>
	<look type="74" corpse="6017"/>
	<targetchange interval="5000" chance="20"/>
	<strategy attack="100" defense="0"/>
	<flags>
		<flag summonable="1"/>
		<flag attackable="1"/>
		<flag hostile="0"/>
		<flag illusionable="1"/>
		<flag convinceable="1"/>
		<flag pushable="1"/>
		<flag canpushitems="0"/>
		<flag canpushcreatures="0"/>
		<flag targetdistance="1"/>
		<flag staticattack="90"/>
		<flag runonhealth="15"/>
	</flags>
	<defenses armor="1" defense="2"/>
	<loot>
    <item id="2666" chance="89975" /><!-- meat -->
    <item id="2684" chance="5175" /><!-- carrot -->
</loot>

</monster>
 
Back
Top Bottom