I know I can change the max party limit in player.h. But i assume I need to change the UI also and which I dont know where and how. Can anyone guide me on this. If there is more part to change. please help notify. I aim to make it 10.
In player.lua, there are forms for displaying squad members: frmTeamMenber1–frmTeamMenber4. You need to add at least one more copy of these forms for the squad members you’re adding (frmTeamMenber5–frmTeamMenber10) with adjusted coordinates on the screen.The code responsible for these forms is located in UIChat.h/cpp, and there’s also
C++:
enum
{
MAX_MEMBER = 4,
};
Study the code, look for a solution, try it out, and you’ll succeed.