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

Solved monster see you when u are invisible

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
923
Location
Chile
plzz i want that the monster see you when you are invisible, because with utana vid they don't see you :( and if u could tell me how do do it to repeat it with my other monsters i'd be grateful :D
XML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Oozaru" nameDescription="a Oozaru" race="blood" experience="60000" speed="400" manacost="0">
	<health now="30000" max="30000"/>
	<look type="116" corpse="6043"/>
	<targetchange interval="5000" chance="20"/>
	<strategy attack="100" defense="0"/>
	<flags>
		<flag summonable="0"/>
		<flag attackable="1"/>
		<flag hostile="1"/>
		<flag illusionable="1"/>
		<flag convinceable="0"/>
		<flag pushable="0"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="0"/>
		<flag targetdistance="1"/>
		<flag staticattack="90"/>
		<flag runonhealth="10"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" min="-1100" max="-1300"/>
                <attack name="Hells Core" interval="500" chance="1" min="-1200" max="-1600"/>
	</attacks>
	<defenses armor="80" defense="80">
		<defense name="speed" interval="1000" chance="7" speedchange="260" duration="3000">
			<attribute key="areaEffect" value="redshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element firePercent="20"/>
		<element earthPercent="10"/>
		<element energyPercent="5"/>
		<element icePercent="-15"/>
		<element deathPercent="-5"/>
	</elements>
	<voices interval="5000" chance="10">
		<voice sentence="Hugah!"/>
		<voice sentence="Ungh! Ungh!"/>
		<voice sentence="Huaauaauaauaa!"/>
	</voices>
	<loot>
		<item id="2160" countmax="7" chance="100000"/><!-- gold coin -->
		<item id="1987" chance="7342"><!-- bag -->
			<inside>
				<item id="2676" countmax="30" chance="5000"/><!-- banana -->
				<item id="7463" chance="2000"/><!-- protection amulet -->
				<item id="2472" chance="2000"/><!-- club ring -->
				<item id="7343" chance="2000"/><!-- power ring -->
				<item id="11224" chance="2000"/><!-- plate armor -->
				<item id="7460" chance="3000"/><!-- health potion -->
			</inside>
		</item>
	</loot>
</monster>
 
Last edited by a moderator:
It's an immunity, add this to the files.
XML:
	<immunities>
		<immunity invisible="1"/>
	</immunities>


XML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Oozaru" nameDescription="a Oozaru" race="blood" experience="60000" speed="400" manacost="0">
	<health now="30000" max="30000"/>
	<look type="116" corpse="6043"/>
	<targetchange interval="5000" chance="20"/>
	<strategy attack="100" defense="0"/>
	<flags>
		<flag summonable="0"/>
		<flag attackable="1"/>
		<flag hostile="1"/>
		<flag illusionable="1"/>
		<flag convinceable="0"/>
		<flag pushable="0"/>
		<flag canpushitems="1"/>
		<flag canpushcreatures="0"/>
		<flag targetdistance="1"/>
		<flag staticattack="90"/>
		<flag runonhealth="10"/>
	</flags>
	<attacks>
		<attack name="melee" interval="2000" min="-1100" max="-1300"/>
                <attack name="Hells Core" interval="500" chance="1" min="-1200" max="-1600"/>
	</attacks>
	<defenses armor="80" defense="80">
		<defense name="speed" interval="1000" chance="7" speedchange="260" duration="3000">
			<attribute key="areaEffect" value="redshimmer"/>
		</defense>
	</defenses>
	<elements>
		<element firePercent="20"/>
		<element earthPercent="10"/>
		<element energyPercent="5"/>
		<element icePercent="-15"/>
		<element deathPercent="-5"/>
	</elements>
	<immunities>
		<immunity invisible="1"/>
	</immunities>
	<voices interval="5000" chance="10">
		<voice sentence="Hugah!"/>
		<voice sentence="Ungh! Ungh!"/>
		<voice sentence="Huaauaauaauaa!"/>
	</voices>
	<loot>
		<item id="2160" countmax="7" chance="100000"/><!-- gold coin -->
		<item id="1987" chance="7342"><!-- bag -->
			<inside>
				<item id="2676" countmax="30" chance="5000"/><!-- banana -->
				<item id="7463" chance="2000"/><!-- protection amulet -->
				<item id="2472" chance="2000"/><!-- club ring -->
				<item id="7343" chance="2000"/><!-- power ring -->
				<item id="11224" chance="2000"/><!-- plate armor -->
				<item id="7460" chance="3000"/><!-- health potion -->
			</inside>
		</item>
	</loot>
</monster>
 
Back
Top