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

Stalker's invisibility, but used woth you? Its possible?

SaLeM

New Member
Joined
Oct 14, 2007
Messages
97
Reaction score
0
Location
Spain
Stalker's invisibility, but used on you? Its possible?

I have noticed that Stalker uses complete invisibility, even if I delete Invisible.lua from the spells folder. Weird. Any way, I wonder if could be a way to use Stalker's invisibility spell, since it's the only one which hides its name and body.

bb
 
Last edited:
I have noticed that Stalker uses complete invisibility, even if I delete Invisible.lua from the spells folder. Weird. Any way, I wonder if could be a way to use Stalker's invisibility spell, since it's the only one which hides its name and body.

bb

hmm i'm not sure, but i think it's not possible to let there name disappear
 
I have noticed that Stalker uses complete invisibility, even if I delete Invisible.lua from the spells folder. Weird. Any way, I wonder if could be a way to use Stalker's invisibility spell, since it's the only one which hides its name and body.

bb

No, they get complete invisibility because they're monsters, they're source edited.
Maybe if u did a little source edit, you could make invisible be like /invisible for gms.
 
Use this code as Stalker.xml
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Stalker" nameDescription="a stalker" race="blood" experience="90" speed="260" manacost="0">
<health now="120" max="120"/>
<look type="128" head="97" body="116" legs="95" feet="95" corpse="3058"/>
<targetchange interval="2000" chance="10"/>
<strategy attack="60" 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="0"/>
<flag targetdistance="1"/>
<flag runonhealth="0"/>
</flags>
<attacks>
<attack name="melee" interval="2000" skill="40" attack="30"/>
<attack name="lifedrain" interval="1000" chance="17" range="1" min="-20" max="-30"/>
</attacks>
<defenses armor="14" defense="20">
<attribute key="areaEffect" value="blueshimmer"/>
</defense>
</defenses>
<immunities>
<immunity physical="0"/>
<immunity energy="0"/>
<immunity fire="0"/>
<immunity poison="0"/>
<immunity lifedrain="1"/>
<immunity paralyze="0"/>
<immunity outfit="1"/>
<immunity drunk="1"/>
<immunity invisible="1"/>
</immunities>
<loot capacity="500">
<item id="1988" countmax="1" chance="4500"/>
<item id="2260" countmax="1" chance="9000"/>
<item id="2478" countmax="1" chance="3500"/>
<item id="2511" countmax="1" chance="5500"/>
<item id="2148" countmax="8" chance="13000"/>
<item id="2412" countmax="1" chance="6000"/>
<item id="2649" countmax="1" chance="10000"/>
<item id="2425" countmax="1" chance="1200"/>
<item id="2410" countmax="2" chance="11000"/>
</loot>
</monster>
 
Back
Top