mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
Update and regenerate protobuf files (#69)
This commit is contained in:
parent
8a7b2081ad
commit
acf932ae06
@ -84,6 +84,7 @@ CCstrike15UsermessageHelpers::CCstrike15UsermessageHelpers()
|
||||
SETUP_MESSAGE( SSUI );
|
||||
SETUP_MESSAGE( SurvivalStats );
|
||||
//SETUP_MESSAGE( DisconnectToLobby2 );
|
||||
SETUP_MESSAGE( EndOfMatchAllPlayersData );
|
||||
}
|
||||
|
||||
const google::protobuf::Message *CCstrike15UsermessageHelpers::GetPrototype( int index ) const
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -137,6 +137,7 @@ enum ECstrike15UserMessages
|
||||
CS_UM_SSUI = 72;
|
||||
CS_UM_SurvivalStats = 73;
|
||||
CS_UM_DisconnectToLobby2 = 74;
|
||||
CS_UM_EndOfMatchAllPlayersData = 75;
|
||||
}
|
||||
|
||||
enum ECSUsrMsg_DisconnectToLobby_Action {
|
||||
@ -240,6 +241,7 @@ message CCSUsrMsg_CloseCaption
|
||||
optional uint32 hash = 1;
|
||||
optional int32 duration = 2;
|
||||
optional bool from_player = 3;
|
||||
optional string cctoken = 4;
|
||||
}
|
||||
|
||||
message CCSUsrMsg_CloseCaptionDirect
|
||||
@ -472,7 +474,7 @@ message CCSUsrMsg_VoteStart
|
||||
optional string details_str = 5;
|
||||
optional string other_team_str = 6;
|
||||
optional bool is_yes_no_vote = 7;
|
||||
|
||||
optional int32 entidx_target = 8;
|
||||
}
|
||||
|
||||
message CCSUsrMsg_VotePass
|
||||
@ -652,10 +654,13 @@ message CCSUsrMsg_UpdateScreenHealthBar {
|
||||
|
||||
message CCSUsrMsg_EntityOutlineHighlight {
|
||||
optional int32 entidx = 1;
|
||||
optional bool removehighlight = 2;
|
||||
}
|
||||
|
||||
message CCSUsrMsg_SSUI {
|
||||
optional bool show = 1;
|
||||
optional float start_time = 2;
|
||||
optional float end_time = 3;
|
||||
}
|
||||
|
||||
message CCSUsrMsg_SurvivalStats {
|
||||
@ -687,6 +692,28 @@ message CCSUsrMsg_SurvivalStats {
|
||||
optional int32 ticknumber = 4;
|
||||
}
|
||||
|
||||
message CCSUsrMsg_EndOfMatchAllPlayersData {
|
||||
message Accolade {
|
||||
optional int32 eaccolade = 1;
|
||||
optional float value = 2;
|
||||
optional int32 position = 3;
|
||||
}
|
||||
|
||||
message PlayerData {
|
||||
optional int32 entindex = 1;
|
||||
optional uint64 xuid = 2;
|
||||
optional string name = 3;
|
||||
optional int32 teamnumber = 4;
|
||||
optional Accolade nomination = 5;
|
||||
repeated CEconItemPreviewDataBlock items = 6;
|
||||
optional int32 playercolor = 7;
|
||||
optional bool isbot = 8;
|
||||
}
|
||||
|
||||
repeated PlayerData allplayerdata = 1;
|
||||
optional int32 scene = 2;
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
// Messages where the data seems to be irrelevant
|
||||
//=============================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user