Jump to content
  • 0

Increase Party membership


Question

Posted

Only 4 party members is kind of weird, where can we change that?

6 answers to this question

Recommended Posts

  • 0
Posted

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);
            }
        }

:)

  • 0
Posted

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

  • 0
Posted

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

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...