This commit is contained in:
aozhiwei 2019-03-12 09:58:49 +08:00
parent 0d15b79606
commit 586705cce4
2 changed files with 9 additions and 18 deletions

View File

@ -8,11 +8,10 @@ enum CMMessageId_e
_CMJoin = 200;
_CMMove = 201;
_CMEdit = 202;
_CMDropItem = 203;
_CMSendEmote = 204;
_CMEmote = 204;
_CMSpectate = 205;
_CMSendVoice = 206;
_CMVoice = 206;
}
enum SMMessageId_e

View File

@ -102,7 +102,7 @@ message MFPlayerStats
optional int32 kills = 4;
optional int32 dead = 5;
optional int32 damage_type = 6;
//source_type
optional int32 source_type = 30;
optional int32 killer_id = 7;
optional int32 damage_given = 8;
optional int32 damage_taken = 9;
@ -119,7 +119,7 @@ message MFPlayerStats
optional int32 chg_elo = 19;
optional int32 heal_heath = 20;
optional string uuid = 21;
optional string account_id = 21;
repeated MFGoods annual_goods = 22;
}
@ -170,7 +170,7 @@ message CMJoin
optional int32 bot = 6; //
optional string name = 7; //
optional int32 use_touch = 8; //zzz
optional string uuid = 9; //id account_id
optional string account_id = 9; //id account_id
repeated int32 emotes = 10; //
optional string icon = 11; //
optional int32 energy_shield = 12; //
@ -213,13 +213,6 @@ message CMMove
optional MFVector2D to_move_dir = 24; //
}
//xxx
message CMEditMsg
{
optional bool cull = 1; //zz
optional float zoom = 2; //zz
}
//
message CMDropItem
{
@ -228,7 +221,7 @@ message CMDropItem
}
//
message CMSendEmote
message CMEmote
{
optional int32 type = 1;
optional MFVector2D pos = 2;
@ -245,11 +238,10 @@ message CMSpectate
}
//
message CMSendVoice
message CMVoice
{
optional int32 mode = 1; //
optional string uuid = 2; //id
optional string msg = 3; //
optional string msg = 2; //
}
@ -259,7 +251,7 @@ message CMSendVoice
message SMVoiceNotify
{
optional int32 mode = 1; //
optional string uuid = 2; //id
optional string account_id = 2; //id
optional string msg = 3; //
}