This commit is contained in:
aozhiwei 2024-03-25 15:42:23 +08:00
parent 34a42c7bff
commit 14fd195ef8
2 changed files with 45 additions and 0 deletions

View File

@ -35,6 +35,7 @@ enum CMMessageId_e
_CMWatchTarget = 241;
_CMTeamCommand = 242;
_CMMobaBattleData = 243;
_CMBattlePreSetReady = 245;
}
enum SMMessageId_e
@ -82,4 +83,5 @@ enum SMMessageId_e
_SMTeamCommandNotify = 1031;
_SMTeamFullNotify = 1032;
_SMTeamPartNotify = 1033;
_SMBattlePreInfoUpdate = 1034;
}

View File

@ -1501,6 +1501,38 @@ message MFMobaBattleDataTeam
repeated MFMobaBattleDataMember members = 2; //
}
//
message MFBattlePreHero
{
optional int32 hero_id = 1; //id
optional int32 quality = 2; //
}
//
message MFBattlePreMember
{
optional string account_id = 1; //id
optional string name = 2; //
optional int32 is_leader = 3; //
optional int32 spec_skill = 4; //id
optional MFBattlePreHero hero = 5; //
optional int32 is_ready = 6; //
}
//
message MFBattlePreTeam
{
repeated MFBattlePreMember members = 1; //
}
//()
message MFBattlePreInfo
{
repeated MFBattlePreTeam team_list = 1; //(account_id获取自己所在队伍,)
optional int32 state = 2; //0: 1: SMJoinedNotify和SMMapInfo信息
optional int32 map_id = 3; //id
}
//end mfmsg
//
@ -1530,6 +1562,11 @@ message CMJoin
optional string payload_data = 75; //
}
//
message CMBattlePreSetReady
{
}
//线
message CMReconnect
{
@ -2131,3 +2168,9 @@ message SMTeamPartNotify
{
repeated MFTeamPart members = 1; //
}
//
message SMBattlePreInfoUpdate
{
optional MFBattlePreInfo info = 1; //
}