Hide Skill Bug

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Lineage
Posts: 63
Joined: Thu Jan 31, 2008 7:39 am

Hide Skill Bug

Post by Lineage »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 3733
L2JDP Revision Number: 6820

Hide effect should worn off if you attack someone. Sometimes it does and sometimes it doesnt. I didnt have much time to look into it so I added a quick fix in L2PcInstance:

Code: Select all

  		@Override		public void doAttack(L2Character target)		{ 			if (getAppearance().getInvisible())			{				L2Effect eInvisible = getFirstEffect(L2EffectType.HIDE);				if (eInvisible != null)					eInvisible.exit();			} 			super.doAttack(target); 			// cancel the recent fake-death protection instantly if the player attacks or casts spells			getPlayer().setRecentFakeDeath(false);		} 		@Override		public void doCast(L2Skill skill)		{ 			if (getAppearance().getInvisible())			{				L2Effect eInvisible = getFirstEffect(L2EffectType.HIDE);				if (eInvisible != null)					eInvisible.exit();			} 			super.doCast(skill); 			// cancel the recent fake-death protection instantly if the player attacks or casts spells			getPlayer().setRecentFakeDeath(false);		} 
babyjason
Posts: 575
Joined: Wed Dec 02, 2009 7:59 pm

Re: Hide Skill Bug

Post by babyjason »

hide works perfectly.
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Hide Skill Bug

Post by janiii »

His revision is gracia final.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
Lineage
Posts: 63
Joined: Thu Jan 31, 2008 7:39 am

Re: Hide Skill Bug

Post by Lineage »

Its epilouge revision but when epilouge was first released. Anyway, im gona update my server today, too many npe's and issues. I will also double check Hide after the update.
Post Reply