MsgTeamMember

This message is sent to the client to update the team member list. It can include one or more team members, but each message must be all additions or all removals. Visually in the client, this is the vertical list of members' faces and healths along the right side of the screen.

Table of Contents

Patch 4267

Message Definition

☑️ Assumed (Soul)

PosTypeNameDescriptionExample
0UInt16MsgSizeSize of the message34
2UInt16MsgTypeType of message1026
4ByteActionAdding or removing1
5ByteAmountNumber of team members being acted upon1
6TeamMemberMembersRepeated list of team members

Team Member Definition

☑️ Assumed (Soul)

PosTypeNameDescriptionExample
0Char[16]NameHero namePlayer
16UInt32IDHero ID of the member1000001
20UInt32Look FaceMesh of the entity501002
24UInt16Max HPTotal HP the member can have92
26UInt16HPTotal HP the member has54

Team Member Action Type

☑️ Assumed (Soul)

enum TeamMemberActionTypes {

    TEAM_MEMBER_ACTION_ADD_MEMBER = 0;
    TEAM_MEMBER_ACTION_DROP_MEMBER = 1;
}