Special/Event Effects

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
User avatar
plim
Posts: 226
Joined: Mon Sep 01, 2008 3:39 pm
Location: Catalunya, Barcelona

Special/Event Effects

Post by plim »

» Find Revision
L2J Revision Number: 4204
L2JDP Revision Number: 7415

The effects that change some appearance of the character by an effect that is like a fake item (Afro effect, Vesper effect...) seem to not broadcast to other players.

I use the adminEffects menu to start an Afro Effect for example, and I can see the hair of my char looking like an Afro, but other players don't see it.

This happens also with this new effect that makes the char look like is wearing a vesper set and weapon. I see the effect but no one else sees anything but the weapon glow.

The baguette effects don't work either but in this case I don't see the effect and I think it's a problem with a dat of the epilogue system.

I've been looking at the UserInfo and other packets of the Core and I don't see many differences between the Gracia Final version. Maybe something is missing... I don't know. If anyone has any idea I would appreciate. Thanks :)
Image
User avatar
Tan
L2j Veteran
L2j Veteran
Posts: 873
Joined: Wed Jun 10, 2009 10:31 pm
Location: Poland

Re: Special/Event Effects

Post by Tan »

probably client side
Some people believe in God... i believe in Music... some people pray..... I turn on Winamp
http://www.last.fm/user/L2jTan
User avatar
plim
Posts: 226
Joined: Mon Sep 01, 2008 3:39 pm
Location: Catalunya, Barcelona

Re: Special/Event Effects

Post by plim »

I understand that the problem with Baguette effect is client side, but I doubt that the other problems are the same.

I'm testing with updated client and I'm pretty sure that In official servers they have already used this "event effects", specially that vesper event is very recent and I don't think they are not seeing each other vesper effect :s
Image
User avatar
plim
Posts: 226
Joined: Mon Sep 01, 2008 3:39 pm
Location: Catalunya, Barcelona

Re: Special/Event Effects

Post by plim »

Hello? Somebody could give me some answer please :(
Image
User avatar
JIV
L2j Veteran
L2j Veteran
Posts: 1882
Joined: Sun Jan 06, 2008 8:17 pm
Location: Slovakia
Contact:

Re: Special/Event Effects

Post by JIV »

i believe tan answered it correct.
User avatar
plim
Posts: 226
Joined: Mon Sep 01, 2008 3:39 pm
Location: Catalunya, Barcelona

Re: Special/Event Effects

Post by plim »

It can't be correct... the Vesper Event has been active of official servers... I doubt that they can't see each others effects :S:S

I've been checking the packets that are sent when updating abnormal effects and I've noticed that the values sent on this packets in l2j gs are slightly different on l2jfree :S. Any idea of that??
Image
User avatar
JIV
L2j Veteran
L2j Veteran
Posts: 1882
Joined: Sun Jan 06, 2008 8:17 pm
Location: Slovakia
Contact:

Re: Special/Event Effects

Post by JIV »

show the difference.
User avatar
gigiikun
L2j Veteran
L2j Veteran
Posts: 637
Joined: Wed Jan 24, 2007 10:00 am
Location: Hungary

Re: Special/Event Effects

Post by gigiikun »

First read the event description:
http://www.lineage2.com/archive/2010/04 ... s_day.html
The character then emailed a screenshot of their situation and this proved that the character was indeed also wearing Vesper armor and carrying a glowing Vesper weapon. It seems that the transformations cannot be seen by other players.
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Special/Event Effects

Post by jurchiks »

Well that sure is stupid, what's the point if only you can see it? Are there even any effects besides visual?
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
User avatar
gigiikun
L2j Veteran
L2j Veteran
Posts: 637
Joined: Wed Jan 24, 2007 10:00 am
Location: Hungary

Re: Special/Event Effects

Post by gigiikun »

This is only visual effect, nothing more.
User avatar
Nyayukko
Posts: 14
Joined: Sat Nov 29, 2008 9:28 am

Re: Special/Event Effects

Post by Nyayukko »

But, afro and Baguette effect was visible by everybody on Gracia Final. :?
Image
Image
Image
User avatar
plim
Posts: 226
Joined: Mon Sep 01, 2008 3:39 pm
Location: Catalunya, Barcelona

Re: Special/Event Effects

Post by plim »

Yeah it has no sense that only you can see it. By the way... Afro, Baguette and so could be seen in Gracia Final by other players.

Later I'll look for these differences I mentioned that i've seen on l2jfree.

Here:

On ExBrExtraUserInfo

Code: Select all

 protected final void writeImpl(){	writeC(0xfe);	if (Config.PACKET_FINAL)		writeH(0xac);	else		writeH(0x8d);	writeD(_charObjId);  // object id of player	writeD(_val);        // afro hair cut} 
And CharInfo:

Code: Select all

         // T1	writeD(_view.getTransformationGraphicalId());	writeD(_activeChar.getAgathionId()); 	// T2	writeD(0x00); 	if (Config.PACKET_FINAL)	{		// T2.3		writeD(_activeChar.getSpecialEffect());		writeD(0x00);		writeD(0x00);		writeD(0x00);	}
Image
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Special/Event Effects

Post by janiii »

in CharInfo l2jfree writes D 0x00 and l2j writes D 0x01 .
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
User avatar
plim
Posts: 226
Joined: Mon Sep 01, 2008 3:39 pm
Location: Catalunya, Barcelona

Re: Special/Event Effects

Post by plim »

Somebody could check how these effects work on l2jfree? I can check but I don't have l2jfree compiled, and maven causes me troubles XD.

Do you think the changes on the same packet in l2jfree make anny difference janiii?
Image
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Special/Event Effects

Post by jurchiks »

maybe it's like a boolean "show to others", who knows...
Last edited by jurchiks on Mon May 24, 2010 7:24 pm, edited 1 time in total.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Post Reply