Jump to content

Functor

Members
  • Content Count

    34
  • Joined

  • Last visited

  • Days Won

    10

Posts posted by Functor


  1. 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;
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.