Jump to content
  • 0

L2J HIDE SKILL


Question

Posted

Okey, lets go:

 

I see the problem, if someone hiting me and I get invisible (with hide skill) he still hitting me, but he lose my target.. any idea? (he is just attacking me, not with skills)

 

I think need add effect like "anti target" to HIDE effect. ;s

 

BTW I added it to Interlude.

Everything works good. Only this problem.. Smiley

 

I took that from http://www.maxcheaters.com/forum/index.php?topic=78590.0

3 answers to this question

Recommended Posts

  • 0
Posted

Here is the code i use on my server.

 

	<skill id="922" levels="1" name="Hide">
	<set name="target" val="TARGET_SELF" />
	<set name="skillType" val="BUFF" />
	<set name="reuseDelay" val="150000" />
	<set name="magicLvl" val="81" />
	<set name="operateType" val="OP_ACTIVE" />
	<set name="removedOnAnyActionExceptMove" val="true" />
	<set name="removedOnDamage" val="true" />
	<for>
		<effect name="Hide" time="25" val="0">
			<mul order="0x30" stat="runSpd" val="0.6" />
		</effect>

 

And if you use retail effects :

	<skill id="922" levels="1" name="Hide">
	<set name="target" val="TARGET_SELF" />
	<set name="skillType" val="BUFF" />
	<set name="reuseDelay" val="180000" />
	<set name="magicLvl" val="81" />
	<set name="operateType" val="OP_ACTIVE" />
	<set name="removedOnAnyActionExceptMove" val="true" />
	<set name="removedOnDamage" val="true" />
	<for>
		<effect name="Hide" time="30" val="0">
			<mul order="0x30" stat="runSpd" val="0.7" />
		</effect>

  • 0
Posted

no no no, i dont need it, I'm talking about:

 

1. Player attacking me (without skill)

2. I use Hide skill.

3. He still attacking me (but he lose my target)

 

I think the problem is at "auto attack able" he losing my target but still attacking.

Guest
This topic is now closed to further replies.


×
×
  • Create New...