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

Cancel Invisible & Utevo res ina (solved)

StormRusher

New Member
Joined
Dec 23, 2009
Messages
138
Reaction score
0
Hi

I need a script to cancel/not allow invisible and utevo res ina..
does it possible?

thanks
 
Last edited:
Cancel invisible removes invisible from your enemy (or anyone in the range).
I think it has the same looks/size as mass healing. I think the words are "exana ina" or something like it.
 
Hi

I need a script to cancel/not allow invisible and utevo res ina..
does it possible?

thanks

If you just want to remove them then just remove this from spells.xml:

PHP:
<instant name="Creature Illusion" words="utevo res ina" lvl="23" mana="100" aggressive="0" params="1" exhaustion="1000" needlearn="0" event="function" value="Illusion">
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="5"/>
		<vocation id="6"/>
	</instant>

PHP:
<instant name="Invisibility" words="utana vid" lvl="35" mana="440" aggressive="0" selftarget="1" exhaustion="1000" needlearn="0" event="script" value="support/invisible.lua">
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="3"/>
		<vocation id="5"/>
		<vocation id="6"/>
		<vocation id="7"/>
	</instant>
 
Back
Top