Skip to content

Commit 6a005d4

Browse files
Vaufftilgep
authored andcommitted
Update protobufs to fix silenced stopsound (again)
1 parent 7c1c610 commit 6a005d4

10 files changed

Lines changed: 1912 additions & 606 deletions

protobuf/cs_gameevents.proto

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ enum ECsgoGameEvents {
44
GE_PlayerAnimEventId = 450;
55
GE_RadioIconEventId = 451;
66
GE_FireBulletsId = 452;
7+
GE_PlayerBulletHitId = 453;
78
}
89

910
message CMsgTEPlayerAnimEvent {
@@ -43,5 +44,18 @@ message CMsgTEFireBullets {
4344
optional .CMsgVector ent_origin = 13;
4445
optional uint32 num_bullets_remaining = 14;
4546
optional uint32 attack_type = 15;
47+
optional bool player_inair = 17;
48+
optional bool player_scoped = 18;
49+
optional int32 tick = 19;
4650
optional .CMsgTEFireBullets.Extra extra = 16;
4751
}
52+
53+
message CMsgPlayerBulletHit {
54+
optional int32 attacker_slot = 1 [default = -1];
55+
optional int32 victim_slot = 2 [default = -1];
56+
optional .CMsgVector victim_pos = 3;
57+
optional int32 hit_group = 4;
58+
optional int32 damage = 5;
59+
optional int32 penetration_count = 6;
60+
optional bool is_kill = 7;
61+
}

protobuf/cstrike15_gcmessages.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -924,6 +924,7 @@ message CEconItemPreviewDataBlock {
924924
optional float offset_z = 9;
925925
optional uint32 pattern = 10;
926926
optional uint32 highlight_reel = 11;
927+
optional uint32 wrapped_sticker = 12;
927928
}
928929

929930
optional uint32 accountid = 1;

protobuf/econ_gcmessages.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ enum EGCItemCustomizationNotification {
186186
k_EGCItemCustomizationNotification_NameBaseItem = 1019;
187187
k_EGCItemCustomizationNotification_RemoveItemName = 1030;
188188
k_EGCItemCustomizationNotification_RemoveSticker = 1053;
189+
k_EGCItemCustomizationNotification_ExtractSticker = 1054;
190+
k_EGCItemCustomizationNotification_EncapsulateSticker = 1055;
189191
k_EGCItemCustomizationNotification_ApplySticker = 1086;
190192
k_EGCItemCustomizationNotification_StatTrakSwap = 1088;
191193
k_EGCItemCustomizationNotification_RemovePatch = 1089;

0 commit comments

Comments
 (0)