MsgTeam

This message performs simple team commands at the request of a client for managing the team and team members.

Table of Contents

Patch 4267

Message Definition

☑️ Assumed (Soul)

PosTypeNameDescriptionExample
0UInt16MsgSizeSize of the message8
2UInt16MsgTypeType of message1023
4UInt32ActionThe command being requested1
8UInt32PlayerHero ID of the target1000001

Action Type

☑️ Assumed (Soul)

enum TeamActionTypes {

    TEAM_ACTION_CREATE = 0;
    TEAM_ACTION_APPLY_JOIN = 1;
    TEAM_ACTION_LEAVE = 2;
    TEAM_ACTION_ACCEPT_INVITE = 3;
    TEAM_ACTION_INVITE = 4;
    TEAM_ACTION_ACCEPT_JOIN = 5;
    TEAM_ACTION_DISMISS = 6;
    TEAM_ACTION_KICK_OUT = 7;
    TEAM_ACTION_CLOSE_TEAM = 8;
    TEAM_ACTION_OPEN_TEAM = 9;
    TEAM_ACTION_CLOSE_MONEY_ACCESS = 10;
    TEAM_ACTION_OPEN_MONEY_ACCESS = 11;
    TEAM_ACTION_CLOSE_ITEM_ACCESS = 12;
    TEAM_ACTION_OPEN_ITEM_ACCESS = 13;
}