Jump to content
  • 0

Increase Party membership


Guest

Question

6 answers to this question

Recommended Posts

  • 0

In the intersect.Server, Player.cs line 3513

 if (Party.Count < 4)
            {
                target.LeaveParty();
                Party.Add(target);

                //Update all members of the party with the new list
                for (var i = 0; i < Party.Count; i++)
                {
                    Party[i].Party = Party;
                    PacketSender.SendParty(Party[i]);
                    PacketSender.SendChatMsg(
                        Party[i], Strings.Parties.joined.ToString(target.Name), CustomColors.Alerts.Accepted
                    );
                }
            }
            else
            {
                PacketSender.SendChatMsg(this, Strings.Parties.limitreached, CustomColors.Alerts.Error);
            }
        }

:)

Link to comment
Share on other sites

  • 0

But modifying the quantity, it will work anyway, right?
I saw your comment about XP up to 9 maps on the way back, which you haven't done yet :P

Link to comment
Share on other sites

  • 0

JC,to add the new number of members in the UI, just edit the UI right? Or do you need to change the code too?

Of course, right after configured as above

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...