This commit is contained in:
aozhiwei 2023-05-29 19:34:30 +08:00
parent 2b8e88adfc
commit 1763f491e3
2 changed files with 15 additions and 0 deletions

View File

@ -65,4 +65,5 @@ enum SMMessageId_e
_SMNewsTicker = 1024; _SMNewsTicker = 1024;
_SMSyncPosition = 1025; _SMSyncPosition = 1025;
_SMSyncTeamData = 1026; _SMSyncTeamData = 1026;
_SMSyncKillList = 1027;
} }

View File

@ -1324,6 +1324,13 @@ message MFObjPosition
{ {
optional int32 obj_uniid = 1; //id optional int32 obj_uniid = 1; //id
optional MFVec3 pos = 2; // optional MFVec3 pos = 2; //
optional MFVec3 dir = 3; //
}
//
message MFKill
{
optional int32 obj_uniid = 1; //id
} }
@ -1662,6 +1669,7 @@ message SMNewsTicker
msg_context.values[2]: boss x msg_context.values[2]: boss x
msg_context.values[3]: boss y msg_context.values[3]: boss y
msg_context.values[4]: boss z msg_context.values[4]: boss z
msg_context.values[5]: ()
*/ */
optional int32 msg_type = 1; // optional int32 msg_type = 1; //
optional MFTupleString msg_content = 2; // optional MFTupleString msg_content = 2; //
@ -1679,6 +1687,12 @@ message SMSyncTeamData
repeated MFTeamDataNew team_list = 18; // repeated MFTeamDataNew team_list = 18; //
} }
//
message SMSyncKillList
{
repeated MFKill kill_list = 18; //
}
// //
message SMGameOver message SMGameOver
{ {