Jump to content

  •  

Functor

Member Since 19 Dec 2013
Offline Last Active Private
-----

#82455 [20141022] Disable Auras?

Posted by Functor on 14 May 2017 - 10:19 PM

offset 3DCD80 change 56 to C3




#70917 @partybuff / @spb

Posted by Functor on 15 March 2016 - 01:37 AM

there is a bug, when the player JUST login for the 1st time in that party ( party just loaded )
your name will appear twice in the party window


Also we can see this bug, when someone enters to the party.
 
It is caused by sending of 0x1E9 packet, which adds one specific party member to the list on the client side.
 
To fix bug of this plugin, we can disable sending of this packet.
 
Because in any case server always sends full list of party members in 0xFB packet.


before:

 

HPExport void plugin_init (void) {

add:

 

void clif_party_member_info_overload(struct party_data* p, struct map_session_data* sd)
{
	return;
}

 

after:


HPExport void plugin_init (void) {

add:


clif->party_member_info = &clif_party_member_info_overload;