overlook-csgo 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3769160dddcfe76342a357d61185e513228ac300
4
- data.tar.gz: 552d8f0a05ea5409597ed25d83746cb4ebdd1230
3
+ metadata.gz: 4e3b46dfe6cb0c54aa278c6cd2df621aa5cdcb1c
4
+ data.tar.gz: 6c136f5d8015a87b87b011fed0ce0b69e92cdb02
5
5
  SHA512:
6
- metadata.gz: ccb1bedff75c40fe500a3f9ea08a1983200371932565a2b909658230a69133497f6e27ecafdf1ff43e1ed13c3b641dca6467143a480bc3d7a0051ac739277a28
7
- data.tar.gz: 7d40a426328ba1263cb42b7e5d3bd1ce341aafef5893a85aef3924e04586978cec3afa99c0c8bb4784a872b4778eb0a35440cf0a240425c76735bb4ea0a3b157
6
+ metadata.gz: a8bc0a2db8b17ca24aa55fa17bfbbed96d9b64627f9dd21ce852f15f1f5201bca19687e19a9d576d0d8d4f3f30279c313a6645d94ce9ad901a35d7c30fdf844b
7
+ data.tar.gz: e58fe0e1dca60cfbcf66ac5a3880c3231c9920e92300c452b86e38b9361460882b9ff492562e40a8306f76c37c87ed13179674a553e68e328d6e56130cd9a9b4
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Overlook
2
2
  [![Build Status](https://travis-ci.org/fastpeek/overlook.svg?branch=master)](https://travis-ci.org/fastpeek/overlook)
3
+ ![Gem Version](https://img.shields.io/gem/v/overlook-csgo.svg)
3
4
 
4
5
  Ruby access to CS:GO demo files.
5
6
 
data/Rakefile CHANGED
@@ -1,7 +1,6 @@
1
1
  require 'bundler/gem_tasks'
2
2
  require 'rspec/core/rake_task'
3
3
 
4
- load './lib/tasks/proto.rake'
5
4
  load './lib/tasks/spec.rake'
6
5
 
7
6
  RSpec::Core::RakeTask.new(:spec)
@@ -1,4 +1,6 @@
1
1
  require 'steamidlib'
2
+ require 'steam/proto'
3
+ Steam::Proto.load_protobufs(:csgo)
2
4
 
3
5
  require 'overlook/version'
4
6
  require 'overlook/csgo'
@@ -7,11 +9,6 @@ require 'overlook/bit_buffer'
7
9
  require 'overlook/bit_reader'
8
10
  require 'overlook/byte_reader'
9
11
 
10
- require 'proto/compiled/descriptor.pb'
11
- require 'proto/compiled/netmessages.pb'
12
- require 'proto/compiled/cstrike15_gcmessages.pb'
13
- require 'proto/compiled/cstrike15_usermessages.pb'
14
-
15
12
  module Overlook
16
13
  def self.decode_share_code(code)
17
14
  decoder = Csgo::SharecodeDecoder.new(code)
@@ -7,7 +7,7 @@ module Overlook
7
7
  end
8
8
 
9
9
  def handle(message)
10
- game_event_list_message = CSVCMsg_GameEventList.decode(message)
10
+ game_event_list_message = ::Csgo::CSVCMsg_GameEventList.decode(message)
11
11
 
12
12
  game_event_list_message.descriptors.each do |descriptor|
13
13
  @parser.descriptors[descriptor.eventid] ||= descriptor
@@ -7,7 +7,7 @@ module Overlook
7
7
  end
8
8
 
9
9
  def handle(message)
10
- game_event_message = CSVCMsg_GameEvent.decode(message)
10
+ game_event_message = ::Csgo::CSVCMsg_GameEvent.decode(message)
11
11
  descriptor = @parser.descriptors[game_event_message.eventid]
12
12
  event_keys = game_event_message.keys || []
13
13
 
@@ -40,10 +40,10 @@ module Overlook
40
40
 
41
41
  def handlers
42
42
  {
43
- MessageTypes::USER_MESSAGE_MESSAGE_ID => UserMessageMessageHandler.new(parser),
44
- MessageTypes::GAME_EVENT_LIST_MESSAGE_ID => GameEventListMessageHandler.new(parser),
45
- MessageTypes::GAME_EVENT_MESSAGE_ID => GameEventMessageHandler.new(parser),
46
- MessageTypes::ENCRYPTED_DATA_ID => EncryptedDataHandler.new(parser),
43
+ ::Csgo::SVC_Messages::Svc_UserMessage => UserMessageMessageHandler.new(parser),
44
+ ::Csgo::SVC_Messages::Svc_GameEventList => GameEventListMessageHandler.new(parser),
45
+ ::Csgo::SVC_Messages::Svc_GameEvent => GameEventMessageHandler.new(parser),
46
+ ::Csgo::SVC_Messages::Svc_EncryptedData => EncryptedDataHandler.new(parser),
47
47
  }
48
48
  end
49
49
 
@@ -6,22 +6,16 @@ module Overlook
6
6
  class UserMessageMessageHandler
7
7
  include SteamIDs
8
8
 
9
- SERVER_RANK_UPDATE_MESSAGE_TYPE = 52
10
- XP_UPDATE_MESSAGE_TYPE = 65
11
- SEND_PLAYER_ITEM_DROP_MESSAGE_TYPE = 61
12
-
13
9
  def initialize(parser)
14
10
  @parser = parser
15
11
  end
16
12
 
17
13
  def handle(message)
18
- user_message = CSVCMsg_UserMessage.decode(message)
14
+ user_message = ::Csgo::CSVCMsg_UserMessage.decode(message)
19
15
 
20
16
  case user_message.msg_type
21
- when SEND_PLAYER_ITEM_DROP_MESSAGE_TYPE
22
- # nop
23
- when XP_UPDATE_MESSAGE_TYPE
24
- xp_update_message = CCSUsrMsg_XpUpdate.decode(user_message.msg_data)
17
+ when ::Csgo::ECstrike15UserMessages::CS_UM_XpUpdate
18
+ xp_update_message = ::Csgo::CCSUsrMsg_XpUpdate.decode(user_message.msg_data)
25
19
  community_id = SteamID32.parse("[U:1:#{xp_update_message.data.account_id}]").to_steamID64.to_s
26
20
 
27
21
  xp_update = {
@@ -35,8 +29,8 @@ module Overlook
35
29
  }
36
30
 
37
31
  @parser.emit(:xp_update, xp_update)
38
- when SERVER_RANK_UPDATE_MESSAGE_TYPE
39
- server_rank_update_message = CCSUsrMsg_ServerRankUpdate.decode(user_message.msg_data)
32
+ when ::Csgo::ECstrike15UserMessages::CS_UM_ServerRankUpdate
33
+ server_rank_update_message = ::Csgo::CCSUsrMsg_ServerRankUpdate.decode(user_message.msg_data)
40
34
 
41
35
  server_rank_update_message.rank_update.each do |update|
42
36
  # The account_id is used in the 'modern' steam format.
@@ -9,7 +9,7 @@ module Overlook
9
9
  end
10
10
 
11
11
  def decode(io)
12
- match = CDataGCCStrike15_v2_MatchInfo.decode(io.read)
12
+ match = ::Csgo::CDataGCCStrike15_v2_MatchInfo.decode(io.read)
13
13
 
14
14
  decoded = {}
15
15
  decoded.merge!(extract_match_meta(match))
@@ -1,3 +1,3 @@
1
1
  module Overlook
2
- VERSION = '0.2.7'.freeze
2
+ VERSION = '0.2.8'.freeze
3
3
  end
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Ruby access to CS:GO demo files.}
13
13
  spec.description = %q{Ruby access to CS:GO demo files.}
14
14
  spec.homepage = 'http://github.com/taylorfinnell/overlook'
15
+ spec.licenses = ['MIT']
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
18
  spec.bindir = 'exe'
@@ -27,6 +28,9 @@ Gem::Specification.new do |spec|
27
28
  # For a simple pub\sub implementation
28
29
  spec.add_dependency 'wisper', '= 1.6.1'
29
30
 
31
+ # For protobufs
32
+ spec.add_dependency 'steam-proto', '~> 0.1'
33
+
30
34
  spec.add_development_dependency 'bundler', '~> 1.10'
31
35
  spec.add_development_dependency 'rake', '~> 10.0'
32
36
  spec.add_development_dependency 'rspec', '~> 3.5'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overlook-csgo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Finnell
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-13 00:00:00.000000000 Z
11
+ date: 2016-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: beefcake
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.6.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: steam-proto
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.1'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: bundler
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -175,17 +189,11 @@ files:
175
189
  - lib/overlook/csgo/match_info_decoder.rb
176
190
  - lib/overlook/csgo/sharecode_decoder.rb
177
191
  - lib/overlook/version.rb
178
- - lib/proto/.gitkeep
179
- - lib/proto/compiled/cstrike15_gcmessages.pb.rb
180
- - lib/proto/compiled/cstrike15_usermessages.pb.rb
181
- - lib/proto/compiled/descriptor.pb.rb
182
- - lib/proto/compiled/netmessages.pb.rb
183
- - lib/proto/compiled/steammessages.pb.rb
184
- - lib/tasks/proto.rake
185
192
  - lib/tasks/spec.rake
186
193
  - overlook-csgo.gemspec
187
194
  homepage: http://github.com/taylorfinnell/overlook
188
- licenses: []
195
+ licenses:
196
+ - MIT
189
197
  metadata: {}
190
198
  post_install_message:
191
199
  rdoc_options: []
File without changes
@@ -1,1407 +0,0 @@
1
- ## Generated from cstrike15_gcmessages.proto
2
- require "beefcake"
3
-
4
-
5
- module ECsgoGCMsg
6
- k_EMsgGCCStrike15_v2_Base = 9100
7
- k_EMsgGCCStrike15_v2_MatchmakingStart = 9101
8
- k_EMsgGCCStrike15_v2_MatchmakingStop = 9102
9
- k_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing = 9103
10
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = 9104
11
- k_EMsgGCCStrike15_v2_MatchmakingGC2ServerReserve = 9105
12
- k_EMsgGCCStrike15_v2_MatchmakingServerReservationResponse = 9106
13
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve = 9107
14
- k_EMsgGCCStrike15_v2_MatchmakingServerRoundStats = 9108
15
- k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello = 9109
16
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello = 9110
17
- k_EMsgGCCStrike15_v2_MatchmakingServerMatchEnd = 9111
18
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon = 9112
19
- k_EMsgGCCStrike15_v2_MatchmakingServer2GCKick = 9113
20
- k_EMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm = 9114
21
- k_EMsgGCCStrike15_v2_MatchmakingGCOperationalStats = 9115
22
- k_EMsgGCCStrike15_v2_MatchmakingGC2ServerRankUpdate = 9116
23
- k_EMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate = 9117
24
- k_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty = 9118
25
- k_EMsgGCCStrike15_v2_ClientReportPlayer = 9119
26
- k_EMsgGCCStrike15_v2_ClientReportServer = 9120
27
- k_EMsgGCCStrike15_v2_ClientCommendPlayer = 9121
28
- k_EMsgGCCStrike15_v2_ClientReportResponse = 9122
29
- k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery = 9123
30
- k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse = 9124
31
- k_EMsgGCCStrike15_v2_WatchInfoUsers = 9126
32
- k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile = 9127
33
- k_EMsgGCCStrike15_v2_PlayersProfile = 9128
34
- k_EMsgGCCStrike15_v2_SetMyMedalsInfo = 9129
35
- k_EMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate = 9131
36
- k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = 9132
37
- k_EMsgGCCStrike15_v2_PlayerOverwatchCaseStatus = 9133
38
- k_EMsgGCCStrike15_v2_GC2ClientTextMsg = 9134
39
- k_EMsgGCCStrike15_v2_Client2GCTextMsg = 9135
40
- k_EMsgGCCStrike15_v2_MatchEndRunRewardDrops = 9136
41
- k_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification = 9137
42
- k_EMsgGCCStrike15_v2_ClientRequestWatchInfoFriends2 = 9138
43
- k_EMsgGCCStrike15_v2_MatchList = 9139
44
- k_EMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames = 9140
45
- k_EMsgGCCStrike15_v2_MatchListRequestRecentUserGames = 9141
46
- k_EMsgGCCStrike15_v2_GC2ServerReservationUpdate = 9142
47
- k_EMsgGCCStrike15_v2_ClientVarValueNotificationInfo = 9144
48
- k_EMsgGCCStrike15_v2_TournamentMatchRewardDropsNotification = 9145
49
- k_EMsgGCCStrike15_v2_MatchListRequestTournamentGames = 9146
50
- k_EMsgGCCStrike15_v2_MatchListRequestFullGameInfo = 9147
51
- k_EMsgGCCStrike15_v2_GiftsLeaderboardRequest = 9148
52
- k_EMsgGCCStrike15_v2_GiftsLeaderboardResponse = 9149
53
- k_EMsgGCCStrike15_v2_ServerVarValueNotificationInfo = 9150
54
- k_EMsgGCToGCReloadVersions = 9151
55
- k_EMsgGCCStrike15_v2_ClientSubmitSurveyVote = 9152
56
- k_EMsgGCCStrike15_v2_Server2GCClientValidate = 9153
57
- k_EMsgGCCStrike15_v2_MatchListRequestLiveGameForUser = 9154
58
- k_EMsgGCCStrike15_v2_Server2GCPureServerValidationFailure = 9155
59
- k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest = 9156
60
- k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse = 9157
61
- k_EMsgGCCStrike15_v2_AccountPrivacySettings = 9158
62
- k_EMsgGCCStrike15_v2_SetMyActivityInfo = 9159
63
- k_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions = 9160
64
- k_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions = 9161
65
- k_EMsgGCCStrike15_v2_DraftSummary = 9162
66
- k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData = 9163
67
- k_EMsgGCCStrike15_v2_ClientRequestJoinServerData = 9164
68
- k_EMsgGCCStrike15_v2_ClientRequestNewMission = 9165
69
- k_EMsgGCCStrike15_v2_GC2ServerNotifyXPRewarded = 9166
70
- k_EMsgGCCStrike15_v2_GC2ClientTournamentInfo = 9167
71
- k_EMsgGC_GlobalGame_Subscribe = 9168
72
- k_EMsgGC_GlobalGame_Unsubscribe = 9169
73
- k_EMsgGC_GlobalGame_Play = 9170
74
- k_EMsgGCCStrike15_v2_AcknowledgePenalty = 9171
75
- k_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin = 9172
76
- k_EMsgGCCStrike15_v2_GC2ClientGlobalStats = 9173
77
- k_EMsgGCCStrike15_v2_Client2GCStreamUnlock = 9174
78
- k_EMsgGCCStrike15_v2_FantasyRequestClientData = 9175
79
- k_EMsgGCCStrike15_v2_FantasyUpdateClientData = 9176
80
- end
81
-
82
- class GameServerPing
83
- include Beefcake::Message
84
- end
85
-
86
- class DetailedSearchStatistic
87
- include Beefcake::Message
88
- end
89
-
90
- class TournamentPlayer
91
- include Beefcake::Message
92
- end
93
-
94
- class TournamentTeam
95
- include Beefcake::Message
96
- end
97
-
98
- class TournamentEvent
99
- include Beefcake::Message
100
- end
101
-
102
- class GlobalStatistics
103
- include Beefcake::Message
104
- end
105
-
106
- class OperationalStatisticDescription
107
- include Beefcake::Message
108
- end
109
-
110
- class OperationalStatisticElement
111
- include Beefcake::Message
112
- end
113
-
114
- class OperationalStatisticsPacket
115
- include Beefcake::Message
116
- end
117
-
118
- class PlayerRankingInfo
119
- include Beefcake::Message
120
- end
121
-
122
- class PlayerCommendationInfo
123
- include Beefcake::Message
124
- end
125
-
126
- class PlayerMedalsInfo
127
- include Beefcake::Message
128
- end
129
-
130
- class AccountActivity
131
- include Beefcake::Message
132
- end
133
-
134
- class TournamentMatchSetup
135
- include Beefcake::Message
136
- end
137
-
138
- class ServerHltvInfo
139
- include Beefcake::Message
140
- end
141
-
142
- class IpAddressMask
143
- include Beefcake::Message
144
- end
145
-
146
- class XpProgressData
147
- include Beefcake::Message
148
- end
149
-
150
- class MatchEndItemUpdates
151
- include Beefcake::Message
152
- end
153
-
154
- class ScoreLeaderboardData
155
- include Beefcake::Message
156
-
157
- class Entry
158
- include Beefcake::Message
159
- end
160
-
161
- class AccountEntries
162
- include Beefcake::Message
163
- end
164
- end
165
-
166
- class PlayerQuestData
167
- include Beefcake::Message
168
-
169
- class QuestItemData
170
- include Beefcake::Message
171
- end
172
- end
173
-
174
- class CMsgGC_ServerQuestUpdateData
175
- include Beefcake::Message
176
- end
177
-
178
- class CMsgGCCStrike15_v2_MatchmakingGCOperationalStats
179
- include Beefcake::Message
180
- end
181
-
182
- class CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm
183
- include Beefcake::Message
184
- end
185
-
186
- class CMsgGCCStrike15_v2_GC2ServerReservationUpdate
187
- include Beefcake::Message
188
- end
189
-
190
- class CMsgGCCStrike15_v2_MatchmakingStart
191
- include Beefcake::Message
192
- end
193
-
194
- class CMsgGCCStrike15_v2_MatchmakingStop
195
- include Beefcake::Message
196
- end
197
-
198
- class CMsgGCCStrike15_v2_MatchmakingClient2ServerPing
199
- include Beefcake::Message
200
- end
201
-
202
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate
203
- include Beefcake::Message
204
-
205
- class Note
206
- include Beefcake::Message
207
- end
208
- end
209
-
210
- class CDataGCCStrike15_v2_TournamentMatchDraft
211
- include Beefcake::Message
212
-
213
- class Entry
214
- include Beefcake::Message
215
- end
216
- end
217
-
218
- class CPreMatchInfoData
219
- include Beefcake::Message
220
-
221
- class TeamStats
222
- include Beefcake::Message
223
- end
224
- end
225
-
226
- class CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve
227
- include Beefcake::Message
228
- end
229
-
230
- class CMsgGCCStrike15_v2_MatchmakingServerReservationResponse
231
- include Beefcake::Message
232
- end
233
-
234
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve
235
- include Beefcake::Message
236
- end
237
-
238
- class CMsgGCCStrike15_v2_MatchmakingServerRoundStats
239
- include Beefcake::Message
240
-
241
- class DropInfo
242
- include Beefcake::Message
243
- end
244
- end
245
-
246
- class CMsgGCCStrike15_v2_MatchmakingServerMatchEnd
247
- include Beefcake::Message
248
- end
249
-
250
- class CMsgGCCStrike15_v2_MatchmakingClient2GCHello
251
- include Beefcake::Message
252
- end
253
-
254
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientHello
255
- include Beefcake::Message
256
- end
257
-
258
- class CMsgGCCStrike15_v2_AccountPrivacySettings
259
- include Beefcake::Message
260
-
261
- class Setting
262
- include Beefcake::Message
263
- end
264
- end
265
-
266
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon
267
- include Beefcake::Message
268
- end
269
-
270
- class CMsgGCCStrike15_v2_MatchmakingServer2GCKick
271
- include Beefcake::Message
272
- end
273
-
274
- class CMsgGCCStrike15_v2_MatchmakingGC2ServerRankUpdate
275
- include Beefcake::Message
276
- end
277
-
278
- class CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate
279
- include Beefcake::Message
280
- end
281
-
282
- class CMsgGCCStrike15_v2_ServerNotificationForUserPenalty
283
- include Beefcake::Message
284
- end
285
-
286
- class CMsgGCCStrike15_v2_ClientReportPlayer
287
- include Beefcake::Message
288
- end
289
-
290
- class CMsgGCCStrike15_v2_ClientCommendPlayer
291
- include Beefcake::Message
292
- end
293
-
294
- class CMsgGCCStrike15_v2_ClientReportServer
295
- include Beefcake::Message
296
- end
297
-
298
- class CMsgGCCStrike15_v2_ClientReportResponse
299
- include Beefcake::Message
300
- end
301
-
302
- class CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends
303
- include Beefcake::Message
304
- end
305
-
306
- class WatchableMatchInfo
307
- include Beefcake::Message
308
- end
309
-
310
- class CMsgGCCStrike15_v2_ClientRequestJoinFriendData
311
- include Beefcake::Message
312
- end
313
-
314
- class CMsgGCCStrike15_v2_ClientRequestJoinServerData
315
- include Beefcake::Message
316
- end
317
-
318
- class CMsgGCCstrike15_v2_ClientRequestNewMission
319
- include Beefcake::Message
320
- end
321
-
322
- class CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded
323
- include Beefcake::Message
324
- end
325
-
326
- class CMsgGCCStrike15_v2_WatchInfoUsers
327
- include Beefcake::Message
328
- end
329
-
330
- class CMsgGCCStrike15_v2_ClientRequestPlayersProfile
331
- include Beefcake::Message
332
- end
333
-
334
- class CMsgGCCStrike15_v2_PlayersProfile
335
- include Beefcake::Message
336
- end
337
-
338
- class CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate
339
- include Beefcake::Message
340
- end
341
-
342
- class CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment
343
- include Beefcake::Message
344
- end
345
-
346
- class CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus
347
- include Beefcake::Message
348
- end
349
-
350
- class CClientHeaderOverwatchEvidence
351
- include Beefcake::Message
352
- end
353
-
354
- class CMsgGCCStrike15_v2_GC2ClientTextMsg
355
- include Beefcake::Message
356
- end
357
-
358
- class CMsgGCCStrike15_v2_Client2GCTextMsg
359
- include Beefcake::Message
360
- end
361
-
362
- class CMsgGCCStrike15_v2_MatchEndRunRewardDrops
363
- include Beefcake::Message
364
- end
365
-
366
- class CEconItemPreviewDataBlock
367
- include Beefcake::Message
368
-
369
- class Sticker
370
- include Beefcake::Message
371
- end
372
- end
373
-
374
- class CMsgGCCStrike15_v2_MatchEndRewardDropsNotification
375
- include Beefcake::Message
376
- end
377
-
378
- class CMsgItemAcknowledged
379
- include Beefcake::Message
380
- end
381
-
382
- class CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest
383
- include Beefcake::Message
384
- end
385
-
386
- class CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse
387
- include Beefcake::Message
388
- end
389
-
390
- class CMsgGCCStrike15_v2_TournamentMatchRewardDropsNotification
391
- include Beefcake::Message
392
- end
393
-
394
- class CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames
395
- include Beefcake::Message
396
- end
397
-
398
- class CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser
399
- include Beefcake::Message
400
- end
401
-
402
- class CMsgGCCStrike15_v2_MatchListRequestRecentUserGames
403
- include Beefcake::Message
404
- end
405
-
406
- class CMsgGCCStrike15_v2_MatchListRequestTournamentGames
407
- include Beefcake::Message
408
- end
409
-
410
- class CMsgGCCStrike15_v2_MatchListRequestFullGameInfo
411
- include Beefcake::Message
412
- end
413
-
414
- class CDataGCCStrike15_v2_MatchInfo
415
- include Beefcake::Message
416
- end
417
-
418
- class CDataGCCStrike15_v2_TournamentGroupTeam
419
- include Beefcake::Message
420
- end
421
-
422
- class CDataGCCStrike15_v2_TournamentGroup
423
- include Beefcake::Message
424
-
425
- class Picks
426
- include Beefcake::Message
427
- end
428
- end
429
-
430
- class CDataGCCStrike15_v2_TournamentSection
431
- include Beefcake::Message
432
- end
433
-
434
- class CDataGCCStrike15_v2_TournamentInfo
435
- include Beefcake::Message
436
- end
437
-
438
- class CMsgGCCStrike15_v2_MatchList
439
- include Beefcake::Message
440
- end
441
-
442
- class CMsgGCCStrike15_v2_Predictions
443
- include Beefcake::Message
444
-
445
- class GroupMatchTeamPick
446
- include Beefcake::Message
447
- end
448
- end
449
-
450
- class CMsgGCCStrike15_v2_Fantasy
451
- include Beefcake::Message
452
-
453
- class FantasySlot
454
- include Beefcake::Message
455
- end
456
-
457
- class FantasyTeam
458
- include Beefcake::Message
459
- end
460
- end
461
-
462
- class CAttribute_String
463
- include Beefcake::Message
464
- end
465
-
466
- class CMsgGCToGCReloadVersions
467
- include Beefcake::Message
468
- end
469
-
470
- class CMsgCStrike15Welcome
471
- include Beefcake::Message
472
- end
473
-
474
- class CMsgGCCStrike15_v2_ClientVarValueNotificationInfo
475
- include Beefcake::Message
476
- end
477
-
478
- class CMsgGCCStrike15_v2_ServerVarValueNotificationInfo
479
- include Beefcake::Message
480
- end
481
-
482
- class CMsgGCCStrike15_v2_GiftsLeaderboardRequest
483
- include Beefcake::Message
484
- end
485
-
486
- class CMsgGCCStrike15_v2_GiftsLeaderboardResponse
487
- include Beefcake::Message
488
-
489
- class GiftLeaderboardEntry
490
- include Beefcake::Message
491
- end
492
- end
493
-
494
- class CMsgGCCStrike15_v2_ClientSubmitSurveyVote
495
- include Beefcake::Message
496
- end
497
-
498
- class CMsgGCCStrike15_v2_Server2GCClientValidate
499
- include Beefcake::Message
500
- end
501
-
502
- class CMsgGCCStrike15_v2_Server2GCPureServerValidationFailure
503
- include Beefcake::Message
504
- end
505
-
506
- class CMsgGCCStrike15_v2_GC2ClientTournamentInfo
507
- include Beefcake::Message
508
- end
509
-
510
- class CSOEconCoupon
511
- include Beefcake::Message
512
- end
513
-
514
- class CSOQuestProgress
515
- include Beefcake::Message
516
- end
517
-
518
- class CSOPersonaDataPublic
519
- include Beefcake::Message
520
- end
521
-
522
- class CMsgGC_GlobalGame_Subscribe
523
- include Beefcake::Message
524
- end
525
-
526
- class CMsgGC_GlobalGame_Unsubscribe
527
- include Beefcake::Message
528
- end
529
-
530
- class CMsgGC_GlobalGame_Play
531
- include Beefcake::Message
532
- end
533
-
534
- class CMsgGCCStrike15_v2_AcknowledgePenalty
535
- include Beefcake::Message
536
- end
537
-
538
- class CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin
539
- include Beefcake::Message
540
- end
541
-
542
- class CMsgGCCStrike15_v2_Client2GCStreamUnlock
543
- include Beefcake::Message
544
- end
545
-
546
- class GameServerPing
547
- optional :gameserver_id, :uint64, 1
548
- optional :ping, :int32, 2
549
- optional :ip, :uint32, 3
550
- optional :port, :uint32, 4
551
- optional :instances, :uint32, 5
552
- end
553
-
554
- class DetailedSearchStatistic
555
- optional :game_type, :uint32, 1
556
- optional :search_time_avg, :uint32, 2
557
- optional :players_searching, :uint32, 4
558
- end
559
-
560
- class TournamentPlayer
561
- optional :account_id, :uint32, 1
562
- optional :player_nick, :string, 2
563
- optional :player_name, :string, 3
564
- optional :player_dob, :uint32, 4
565
- optional :player_flag, :string, 5
566
- optional :player_location, :string, 6
567
- optional :player_desc, :string, 7
568
- end
569
-
570
- class TournamentTeam
571
- optional :team_id, :int32, 1
572
- optional :team_tag, :string, 2
573
- optional :team_flag, :string, 3
574
- optional :team_name, :string, 4
575
- repeated :players, TournamentPlayer, 5
576
- end
577
-
578
- class TournamentEvent
579
- optional :event_id, :int32, 1
580
- optional :event_tag, :string, 2
581
- optional :event_name, :string, 3
582
- optional :event_time_start, :uint32, 4
583
- optional :event_time_end, :uint32, 5
584
- optional :event_public, :int32, 6
585
- optional :event_stage_id, :int32, 7
586
- optional :event_stage_name, :string, 8
587
- optional :active_section_id, :uint32, 9
588
- end
589
-
590
- class GlobalStatistics
591
- optional :players_online, :uint32, 1
592
- optional :servers_online, :uint32, 2
593
- optional :players_searching, :uint32, 3
594
- optional :servers_available, :uint32, 4
595
- optional :ongoing_matches, :uint32, 5
596
- optional :search_time_avg, :uint32, 6
597
- repeated :search_statistics, DetailedSearchStatistic, 7
598
- optional :main_post_url, :string, 8
599
- optional :required_appid_version, :uint32, 9
600
- optional :pricesheet_version, :uint32, 10
601
- optional :twitch_streams_version, :uint32, 11
602
- optional :active_tournament_eventid, :uint32, 12
603
- optional :active_survey_id, :uint32, 13
604
- end
605
-
606
- class OperationalStatisticDescription
607
- optional :name, :string, 1
608
- optional :idkey, :uint32, 2
609
- end
610
-
611
- class OperationalStatisticElement
612
- optional :idkey, :uint32, 1
613
- repeated :values, :int32, 2
614
- end
615
-
616
- class OperationalStatisticsPacket
617
- optional :packetid, :int32, 1
618
- optional :mstimestamp, :int32, 2
619
- repeated :values, OperationalStatisticElement, 3
620
- end
621
-
622
- class PlayerRankingInfo
623
- optional :account_id, :uint32, 1
624
- optional :rank_id, :uint32, 2
625
- optional :wins, :uint32, 3
626
- optional :rank_change, :float, 4
627
- end
628
-
629
- class PlayerCommendationInfo
630
- optional :cmd_friendly, :uint32, 1
631
- optional :cmd_teaching, :uint32, 2
632
- optional :cmd_leader, :uint32, 4
633
- end
634
-
635
- class PlayerMedalsInfo
636
- optional :medal_team, :uint32, 1
637
- optional :medal_combat, :uint32, 2
638
- optional :medal_weapon, :uint32, 3
639
- optional :medal_global, :uint32, 4
640
- optional :medal_arms, :uint32, 5
641
- repeated :display_items_defidx, :uint32, 7
642
- optional :featured_display_item_defidx, :uint32, 8
643
- end
644
-
645
- class AccountActivity
646
- optional :activity, :uint32, 1
647
- optional :mode, :uint32, 2
648
- optional :map, :uint32, 3
649
- end
650
-
651
- class TournamentMatchSetup
652
- optional :event_id, :int32, 1
653
- optional :team_id_ct, :int32, 2
654
- optional :team_id_t, :int32, 3
655
- optional :event_stage_id, :int32, 4
656
- end
657
-
658
- class ServerHltvInfo
659
- optional :tv_udp_port, :uint32, 1
660
- optional :tv_watch_key, :uint64, 2
661
- optional :tv_slots, :uint32, 3
662
- optional :tv_clients, :uint32, 4
663
- optional :tv_proxies, :uint32, 5
664
- optional :tv_time, :uint32, 6
665
- optional :game_type, :uint32, 8
666
- optional :game_mapgroup, :string, 9
667
- optional :game_map, :string, 10
668
- optional :tv_master_steamid, :uint64, 11
669
- optional :tv_local_slots, :uint32, 12
670
- optional :tv_local_clients, :uint32, 13
671
- optional :tv_local_proxies, :uint32, 14
672
- optional :tv_relay_slots, :uint32, 15
673
- optional :tv_relay_clients, :uint32, 16
674
- optional :tv_relay_proxies, :uint32, 17
675
- optional :tv_relay_address, :uint32, 18
676
- optional :tv_relay_port, :uint32, 19
677
- optional :tv_relay_steamid, :uint64, 20
678
- end
679
-
680
- class IpAddressMask
681
- optional :a, :uint32, 1
682
- optional :b, :uint32, 2
683
- optional :c, :uint32, 3
684
- optional :d, :uint32, 4
685
- optional :bits, :uint32, 5
686
- optional :token, :uint32, 6
687
- end
688
-
689
- class XpProgressData
690
- optional :xp_points, :uint32, 1
691
- optional :xp_category, :int32, 2
692
- end
693
-
694
- class MatchEndItemUpdates
695
- optional :item_id, :uint64, 1
696
- optional :item_attr_defidx, :uint32, 2
697
- optional :item_attr_delta_value, :uint32, 3
698
- end
699
-
700
- class ScoreLeaderboardData
701
-
702
- class Entry
703
- optional :tag, :uint32, 1
704
- optional :val, :uint32, 2
705
- end
706
-
707
- class AccountEntries
708
- optional :accountid, :uint32, 1
709
- repeated :entries, ScoreLeaderboardData::Entry, 2
710
- end
711
- optional :quest_id, :uint64, 1
712
- optional :score, :uint32, 2
713
- repeated :accountentries, ScoreLeaderboardData::AccountEntries, 3
714
- repeated :matchentries, ScoreLeaderboardData::Entry, 5
715
- end
716
-
717
- class PlayerQuestData
718
-
719
- class QuestItemData
720
- optional :quest_id, :uint64, 1
721
- optional :quest_normal_points_earned, :int32, 2
722
- optional :quest_bonus_points_earned, :int32, 3
723
- end
724
- optional :quester_account_id, :uint32, 1
725
- repeated :quest_item_data, PlayerQuestData::QuestItemData, 2
726
- repeated :xp_progress_data, XpProgressData, 3
727
- optional :time_played, :uint32, 4
728
- optional :mm_game_mode, :uint32, 5
729
- repeated :item_updates, MatchEndItemUpdates, 6
730
- end
731
-
732
- class CMsgGC_ServerQuestUpdateData
733
- repeated :player_quest_data, PlayerQuestData, 1
734
- optional :binary_data, :bytes, 2
735
- optional :mm_game_mode, :uint32, 3
736
- optional :missionlbsdata, ScoreLeaderboardData, 4
737
- end
738
-
739
- class CMsgGCCStrike15_v2_MatchmakingGCOperationalStats
740
- optional :packetid, :int32, 1
741
- repeated :namekeys, OperationalStatisticDescription, 2
742
- repeated :packets, OperationalStatisticsPacket, 3
743
- end
744
-
745
- class CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm
746
- optional :token, :uint32, 1
747
- optional :stamp, :uint32, 2
748
- optional :exchange, :uint64, 3
749
- end
750
-
751
- class CMsgGCCStrike15_v2_GC2ServerReservationUpdate
752
- optional :viewers_external_total, :uint32, 1
753
- optional :viewers_external_steam, :uint32, 2
754
- end
755
-
756
- class CMsgGCCStrike15_v2_MatchmakingStart
757
- repeated :account_ids, :uint32, 1
758
- optional :game_type, :uint32, 2
759
- optional :ticket_data, :string, 3
760
- optional :client_version, :uint32, 4
761
- optional :tournament_match, TournamentMatchSetup, 5
762
- end
763
-
764
- class CMsgGCCStrike15_v2_MatchmakingStop
765
- optional :abandon, :int32, 1
766
- end
767
-
768
- class CMsgGCCStrike15_v2_MatchmakingClient2ServerPing
769
- repeated :gameserverpings, GameServerPing, 1
770
- optional :offset_index, :int32, 2
771
- optional :final_batch, :int32, 3
772
- end
773
-
774
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate
775
-
776
- class Note
777
- optional :type, :int32, 1
778
- optional :region_id, :int32, 2
779
- optional :region_r, :float, 3
780
- optional :distance, :float, 4
781
- end
782
- optional :matchmaking, :int32, 1
783
- repeated :waiting_account_id_sessions, :uint32, 2
784
- optional :error, :string, 3
785
- repeated :ongoingmatch_account_id_sessions, :uint32, 6
786
- optional :global_stats, GlobalStatistics, 7
787
- repeated :failping_account_id_sessions, :uint32, 8
788
- repeated :penalty_account_id_sessions, :uint32, 9
789
- repeated :failready_account_id_sessions, :uint32, 10
790
- repeated :vacbanned_account_id_sessions, :uint32, 11
791
- optional :server_ipaddress_mask, IpAddressMask, 12
792
- repeated :notes, CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate::Note, 13
793
- repeated :penalty_account_id_sessions_green, :uint32, 14
794
- repeated :insufficientlevel_sessions, :uint32, 15
795
- end
796
-
797
- class CDataGCCStrike15_v2_TournamentMatchDraft
798
-
799
- class Entry
800
- optional :mapid, :int32, 1
801
- optional :team_id_ct, :int32, 2
802
- end
803
- optional :event_id, :int32, 1
804
- optional :event_stage_id, :int32, 2
805
- optional :team_id_0, :int32, 3
806
- optional :team_id_1, :int32, 4
807
- optional :maps_count, :int32, 5
808
- optional :maps_current, :int32, 6
809
- optional :team_id_start, :int32, 7
810
- optional :team_id_veto1, :int32, 8
811
- optional :team_id_pickn, :int32, 9
812
- repeated :drafts, CDataGCCStrike15_v2_TournamentMatchDraft::Entry, 10
813
- end
814
-
815
- class CPreMatchInfoData
816
-
817
- class TeamStats
818
- optional :match_info_idxtxt, :int32, 1
819
- optional :match_info_txt, :string, 2
820
- repeated :match_info_teams, :string, 3
821
- end
822
- optional :predictions_pct, :int32, 1
823
- optional :draft, CDataGCCStrike15_v2_TournamentMatchDraft, 4
824
- repeated :stats, CPreMatchInfoData::TeamStats, 5
825
- end
826
-
827
- class CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve
828
- repeated :account_ids, :uint32, 1
829
- optional :game_type, :uint32, 2
830
- optional :match_id, :uint64, 3
831
- optional :server_version, :uint32, 4
832
- repeated :rankings, PlayerRankingInfo, 5
833
- optional :encryption_key, :uint64, 6
834
- optional :encryption_key_pub, :uint64, 7
835
- repeated :party_ids, :uint32, 8
836
- repeated :whitelist, IpAddressMask, 9
837
- optional :tv_master_steamid, :uint64, 10
838
- optional :tournament_event, TournamentEvent, 11
839
- repeated :tournament_teams, TournamentTeam, 12
840
- repeated :tournament_casters_account_ids, :uint32, 13
841
- optional :tv_relay_steamid, :uint64, 14
842
- optional :pre_match_data, CPreMatchInfoData, 15
843
- end
844
-
845
- class CMsgGCCStrike15_v2_MatchmakingServerReservationResponse
846
- optional :reservationid, :uint64, 1
847
- optional :reservation, CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve, 2
848
- optional :map, :string, 3
849
- optional :gc_reservation_sent, :uint64, 4
850
- optional :server_version, :uint32, 5
851
- optional :tv_info, ServerHltvInfo, 6
852
- repeated :reward_player_accounts, :uint32, 7
853
- repeated :idle_player_accounts, :uint32, 8
854
- optional :reward_item_attr_def_idx, :uint32, 9
855
- optional :reward_item_attr_value, :uint32, 10
856
- optional :reward_item_attr_reward_idx, :uint32, 11
857
- optional :reward_drop_list, :uint32, 12
858
- optional :tournament_tag, :string, 13
859
- optional :steamdatagram_port, :uint32, 14
860
- end
861
-
862
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve
863
- optional :serverid, :uint64, 1
864
- optional :server_address, :string, 7
865
- optional :legacy_serverip, :uint32, 2
866
- optional :legacy_serverport, :uint32, 3
867
- optional :reservationid, :uint64, 4
868
- optional :reservation, CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve, 5
869
- optional :map, :string, 6
870
- end
871
-
872
- class CMsgGCCStrike15_v2_MatchmakingServerRoundStats
873
-
874
- class DropInfo
875
- optional :account_mvp, :uint32, 1
876
- end
877
- optional :reservationid, :uint64, 1
878
- optional :reservation, CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve, 2
879
- optional :map, :string, 3
880
- optional :round, :int32, 4
881
- repeated :kills, :int32, 5
882
- repeated :assists, :int32, 6
883
- repeated :deaths, :int32, 7
884
- repeated :scores, :int32, 8
885
- repeated :pings, :int32, 9
886
- optional :round_result, :int32, 10
887
- optional :match_result, :int32, 11
888
- repeated :team_scores, :int32, 12
889
- optional :confirm, CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm, 13
890
- optional :reservation_stage, :int32, 14
891
- optional :match_duration, :int32, 15
892
- repeated :enemy_kills, :int32, 16
893
- repeated :enemy_headshots, :int32, 17
894
- repeated :enemy_3ks, :int32, 18
895
- repeated :enemy_4ks, :int32, 19
896
- repeated :enemy_5ks, :int32, 20
897
- repeated :mvps, :int32, 21
898
- optional :spectators_count, :uint32, 22
899
- optional :spectators_count_tv, :uint32, 23
900
- optional :spectators_count_lnk, :uint32, 24
901
- repeated :enemy_kills_agg, :int32, 25
902
- optional :drop_info, CMsgGCCStrike15_v2_MatchmakingServerRoundStats::DropInfo, 26
903
- end
904
-
905
- class CMsgGCCStrike15_v2_MatchmakingServerMatchEnd
906
- optional :stats, CMsgGCCStrike15_v2_MatchmakingServerRoundStats, 1
907
- optional :confirm, CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm, 3
908
- optional :rematch, :uint64, 4
909
- optional :replay_token, :uint32, 5
910
- optional :replay_cluster_id, :uint32, 6
911
- optional :aborted_match, :bool, 7
912
- optional :match_end_quest_data, CMsgGC_ServerQuestUpdateData, 8
913
- optional :server_version, :uint32, 9
914
- end
915
-
916
- class CMsgGCCStrike15_v2_MatchmakingClient2GCHello
917
- end
918
-
919
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientHello
920
- optional :account_id, :uint32, 1
921
- optional :ongoingmatch, CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve, 2
922
- optional :global_stats, GlobalStatistics, 3
923
- optional :penalty_seconds, :uint32, 4
924
- optional :penalty_reason, :uint32, 5
925
- optional :vac_banned, :int32, 6
926
- optional :ranking, PlayerRankingInfo, 7
927
- optional :commendation, PlayerCommendationInfo, 8
928
- optional :medals, PlayerMedalsInfo, 9
929
- optional :my_current_event, TournamentEvent, 10
930
- repeated :my_current_event_teams, TournamentTeam, 11
931
- optional :my_current_team, TournamentTeam, 12
932
- repeated :my_current_event_stages, TournamentEvent, 13
933
- optional :survey_vote, :uint32, 14
934
- optional :activity, AccountActivity, 15
935
- optional :player_level, :int32, 17
936
- optional :player_cur_xp, :int32, 18
937
- optional :player_xp_bonus_flags, :int32, 19
938
- end
939
-
940
- class CMsgGCCStrike15_v2_AccountPrivacySettings
941
-
942
- class Setting
943
- optional :setting_type, :uint32, 1
944
- optional :setting_value, :uint32, 2
945
- end
946
- repeated :settings, CMsgGCCStrike15_v2_AccountPrivacySettings::Setting, 1
947
- end
948
-
949
- class CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon
950
- optional :account_id, :uint32, 1
951
- optional :abandoned_match, CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve, 2
952
- optional :penalty_seconds, :uint32, 3
953
- optional :penalty_reason, :uint32, 4
954
- end
955
-
956
- class CMsgGCCStrike15_v2_MatchmakingServer2GCKick
957
- optional :account_id, :uint32, 1
958
- optional :reservation, CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve, 2
959
- optional :reason, :uint32, 3
960
- end
961
-
962
- class CMsgGCCStrike15_v2_MatchmakingGC2ServerRankUpdate
963
- repeated :rankings, PlayerRankingInfo, 1
964
- optional :match_id, :uint64, 2
965
- end
966
-
967
- class CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate
968
- optional :main_post_url, :string, 1
969
- end
970
-
971
- class CMsgGCCStrike15_v2_ServerNotificationForUserPenalty
972
- optional :account_id, :uint32, 1
973
- optional :reason, :uint32, 2
974
- optional :seconds, :uint32, 3
975
- end
976
-
977
- class CMsgGCCStrike15_v2_ClientReportPlayer
978
- optional :account_id, :uint32, 1
979
- optional :rpt_aimbot, :uint32, 2
980
- optional :rpt_wallhack, :uint32, 3
981
- optional :rpt_speedhack, :uint32, 4
982
- optional :rpt_teamharm, :uint32, 5
983
- optional :rpt_textabuse, :uint32, 6
984
- optional :rpt_voiceabuse, :uint32, 7
985
- optional :match_id, :uint64, 8
986
- end
987
-
988
- class CMsgGCCStrike15_v2_ClientCommendPlayer
989
- optional :account_id, :uint32, 1
990
- optional :match_id, :uint64, 8
991
- optional :commendation, PlayerCommendationInfo, 9
992
- optional :tokens, :uint32, 10
993
- end
994
-
995
- class CMsgGCCStrike15_v2_ClientReportServer
996
- optional :rpt_poorperf, :uint32, 1
997
- optional :rpt_abusivemodels, :uint32, 2
998
- optional :rpt_badmotd, :uint32, 3
999
- optional :rpt_listingabuse, :uint32, 4
1000
- optional :rpt_inventoryabuse, :uint32, 5
1001
- optional :match_id, :uint64, 8
1002
- end
1003
-
1004
- class CMsgGCCStrike15_v2_ClientReportResponse
1005
- optional :confirmation_id, :uint64, 1
1006
- optional :account_id, :uint32, 2
1007
- optional :server_ip, :uint32, 3
1008
- optional :response_type, :uint32, 4
1009
- optional :response_result, :uint32, 5
1010
- optional :tokens, :uint32, 6
1011
- end
1012
-
1013
- class CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends
1014
- optional :request_id, :uint32, 1
1015
- repeated :account_ids, :uint32, 2
1016
- optional :serverid, :uint64, 3
1017
- optional :matchid, :uint64, 4
1018
- end
1019
-
1020
- class WatchableMatchInfo
1021
- optional :server_ip, :uint32, 1
1022
- optional :tv_port, :uint32, 2
1023
- optional :tv_spectators, :uint32, 3
1024
- optional :tv_time, :uint32, 4
1025
- optional :tv_watch_password, :bytes, 5
1026
- optional :cl_decryptdata_key, :uint64, 6
1027
- optional :cl_decryptdata_key_pub, :uint64, 7
1028
- optional :game_type, :uint32, 8
1029
- optional :game_mapgroup, :string, 9
1030
- optional :game_map, :string, 10
1031
- optional :server_id, :uint64, 11
1032
- optional :match_id, :uint64, 12
1033
- optional :reservation_id, :uint64, 13
1034
- end
1035
-
1036
- class CMsgGCCStrike15_v2_ClientRequestJoinFriendData
1037
- optional :version, :uint32, 1
1038
- optional :account_id, :uint32, 2
1039
- optional :join_token, :uint32, 3
1040
- optional :join_ipp, :uint32, 4
1041
- optional :res, CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve, 5
1042
- optional :errormsg, :string, 6
1043
- end
1044
-
1045
- class CMsgGCCStrike15_v2_ClientRequestJoinServerData
1046
- optional :version, :uint32, 1
1047
- optional :account_id, :uint32, 2
1048
- optional :serverid, :uint64, 3
1049
- optional :server_ip, :uint32, 4
1050
- optional :server_port, :uint32, 5
1051
- optional :res, CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve, 6
1052
- end
1053
-
1054
- class CMsgGCCstrike15_v2_ClientRequestNewMission
1055
- optional :mission_id, :uint32, 2
1056
- optional :campaign_id, :uint32, 3
1057
- end
1058
-
1059
- class CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded
1060
- repeated :xp_progress_data, XpProgressData, 1
1061
- optional :account_id, :uint32, 2
1062
- optional :current_xp, :uint32, 3
1063
- optional :current_level, :uint32, 4
1064
- optional :upgraded_defidx, :uint32, 5
1065
- end
1066
-
1067
- class CMsgGCCStrike15_v2_WatchInfoUsers
1068
- optional :request_id, :uint32, 1
1069
- repeated :account_ids, :uint32, 2
1070
- repeated :watchable_match_infos, WatchableMatchInfo, 3
1071
- optional :extended_timeout, :uint32, 5
1072
- end
1073
-
1074
- class CMsgGCCStrike15_v2_ClientRequestPlayersProfile
1075
- optional :request_id__deprecated, :uint32, 1
1076
- repeated :account_ids__deprecated, :uint32, 2
1077
- optional :account_id, :uint32, 3
1078
- optional :request_level, :uint32, 4
1079
- end
1080
-
1081
- class CMsgGCCStrike15_v2_PlayersProfile
1082
- optional :request_id, :uint32, 1
1083
- repeated :account_profiles, CMsgGCCStrike15_v2_MatchmakingGC2ClientHello, 2
1084
- end
1085
-
1086
- class CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate
1087
- optional :caseid, :uint64, 1
1088
- optional :suspectid, :uint32, 3
1089
- optional :fractionid, :uint32, 4
1090
- optional :rpt_aimbot, :uint32, 5
1091
- optional :rpt_wallhack, :uint32, 6
1092
- optional :rpt_speedhack, :uint32, 7
1093
- optional :rpt_teamharm, :uint32, 8
1094
- optional :reason, :uint32, 9
1095
- end
1096
-
1097
- class CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment
1098
- optional :caseid, :uint64, 1
1099
- optional :caseurl, :string, 2
1100
- optional :verdict, :uint32, 3
1101
- optional :timestamp, :uint32, 4
1102
- optional :throttleseconds, :uint32, 5
1103
- optional :suspectid, :uint32, 6
1104
- optional :fractionid, :uint32, 7
1105
- optional :numrounds, :uint32, 8
1106
- optional :fractionrounds, :uint32, 9
1107
- optional :streakconvictions, :int32, 10
1108
- optional :reason, :uint32, 11
1109
- end
1110
-
1111
- class CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus
1112
- optional :caseid, :uint64, 1
1113
- optional :statusid, :uint32, 2
1114
- end
1115
-
1116
- class CClientHeaderOverwatchEvidence
1117
- optional :accountid, :uint32, 1
1118
- optional :caseid, :uint64, 2
1119
- end
1120
-
1121
- class CMsgGCCStrike15_v2_GC2ClientTextMsg
1122
- optional :id, :uint32, 1
1123
- optional :type, :uint32, 2
1124
- optional :payload, :bytes, 3
1125
- end
1126
-
1127
- class CMsgGCCStrike15_v2_Client2GCTextMsg
1128
- optional :id, :uint32, 1
1129
- repeated :args, :bytes, 2
1130
- end
1131
-
1132
- class CMsgGCCStrike15_v2_MatchEndRunRewardDrops
1133
- optional :serverinfo, CMsgGCCStrike15_v2_MatchmakingServerReservationResponse, 3
1134
- optional :match_end_quest_data, CMsgGC_ServerQuestUpdateData, 4
1135
- end
1136
-
1137
- class CEconItemPreviewDataBlock
1138
-
1139
- class Sticker
1140
- optional :slot, :uint32, 1
1141
- optional :sticker_id, :uint32, 2
1142
- optional :wear, :float, 3
1143
- optional :scale, :float, 4
1144
- optional :rotation, :float, 5
1145
- end
1146
- optional :accountid, :uint32, 1
1147
- optional :itemid, :uint64, 2
1148
- optional :defindex, :uint32, 3
1149
- optional :paintindex, :uint32, 4
1150
- optional :rarity, :uint32, 5
1151
- optional :quality, :uint32, 6
1152
- optional :paintwear, :uint32, 7
1153
- optional :paintseed, :uint32, 8
1154
- optional :killeaterscoretype, :uint32, 9
1155
- optional :killeatervalue, :uint32, 10
1156
- optional :customname, :string, 11
1157
- repeated :stickers, CEconItemPreviewDataBlock::Sticker, 12
1158
- optional :inventory, :uint32, 13
1159
- optional :origin, :uint32, 14
1160
- optional :questid, :uint32, 15
1161
- optional :dropreason, :uint32, 16
1162
- end
1163
-
1164
- class CMsgGCCStrike15_v2_MatchEndRewardDropsNotification
1165
- optional :iteminfo, CEconItemPreviewDataBlock, 6
1166
- end
1167
-
1168
- class CMsgItemAcknowledged
1169
- optional :iteminfo, CEconItemPreviewDataBlock, 1
1170
- end
1171
-
1172
- class CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest
1173
- optional :param_s, :uint64, 1
1174
- optional :param_a, :uint64, 2
1175
- optional :param_d, :uint64, 3
1176
- optional :param_m, :uint64, 4
1177
- end
1178
-
1179
- class CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse
1180
- optional :iteminfo, CEconItemPreviewDataBlock, 1
1181
- end
1182
-
1183
- class CMsgGCCStrike15_v2_TournamentMatchRewardDropsNotification
1184
- optional :match_id, :uint64, 1
1185
- optional :defindex, :uint32, 2
1186
- repeated :accountids, :uint32, 3
1187
- end
1188
-
1189
- class CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames
1190
- end
1191
-
1192
- class CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser
1193
- optional :accountid, :uint32, 1
1194
- end
1195
-
1196
- class CMsgGCCStrike15_v2_MatchListRequestRecentUserGames
1197
- optional :accountid, :uint32, 1
1198
- end
1199
-
1200
- class CMsgGCCStrike15_v2_MatchListRequestTournamentGames
1201
- optional :eventid, :int32, 1
1202
- end
1203
-
1204
- class CMsgGCCStrike15_v2_MatchListRequestFullGameInfo
1205
- optional :matchid, :uint64, 1
1206
- optional :outcomeid, :uint64, 2
1207
- optional :token, :uint32, 3
1208
- end
1209
-
1210
- class CDataGCCStrike15_v2_MatchInfo
1211
- optional :matchid, :uint64, 1
1212
- optional :matchtime, :uint32, 2
1213
- optional :watchablematchinfo, WatchableMatchInfo, 3
1214
- optional :roundstats_legacy, CMsgGCCStrike15_v2_MatchmakingServerRoundStats, 4
1215
- repeated :roundstatsall, CMsgGCCStrike15_v2_MatchmakingServerRoundStats, 5
1216
- end
1217
-
1218
- class CDataGCCStrike15_v2_TournamentGroupTeam
1219
- optional :team_id, :int32, 1
1220
- optional :score, :int32, 2
1221
- optional :correctpick, :bool, 3
1222
- end
1223
-
1224
- class CDataGCCStrike15_v2_TournamentGroup
1225
-
1226
- class Picks
1227
- repeated :pickids, :int32, 1
1228
- end
1229
- optional :groupid, :uint32, 1
1230
- optional :name, :string, 2
1231
- optional :desc, :string, 3
1232
- optional :picks__deprecated, :uint32, 4
1233
- repeated :teams, CDataGCCStrike15_v2_TournamentGroupTeam, 5
1234
- repeated :stage_ids, :int32, 6
1235
- optional :picklockuntiltime, :uint32, 7
1236
- optional :pickableteams, :uint32, 8
1237
- optional :points_per_pick, :uint32, 9
1238
- repeated :picks, CDataGCCStrike15_v2_TournamentGroup::Picks, 10
1239
- end
1240
-
1241
- class CDataGCCStrike15_v2_TournamentSection
1242
- optional :sectionid, :uint32, 1
1243
- optional :name, :string, 2
1244
- optional :desc, :string, 3
1245
- repeated :groups, CDataGCCStrike15_v2_TournamentGroup, 4
1246
- end
1247
-
1248
- class CDataGCCStrike15_v2_TournamentInfo
1249
- repeated :sections, CDataGCCStrike15_v2_TournamentSection, 1
1250
- optional :tournament_event, TournamentEvent, 2
1251
- repeated :tournament_teams, TournamentTeam, 3
1252
- end
1253
-
1254
- class CMsgGCCStrike15_v2_MatchList
1255
- optional :msgrequestid, :uint32, 1
1256
- optional :accountid, :uint32, 2
1257
- optional :servertime, :uint32, 3
1258
- repeated :matches, CDataGCCStrike15_v2_MatchInfo, 4
1259
- repeated :streams, TournamentTeam, 5
1260
- optional :tournamentinfo, CDataGCCStrike15_v2_TournamentInfo, 6
1261
- end
1262
-
1263
- class CMsgGCCStrike15_v2_Predictions
1264
-
1265
- class GroupMatchTeamPick
1266
- optional :sectionid, :int32, 1
1267
- optional :groupid, :int32, 2
1268
- optional :index, :int32, 3
1269
- optional :teamid, :int32, 4
1270
- optional :itemid, :uint64, 5
1271
- end
1272
- optional :event_id, :uint32, 1
1273
- repeated :group_match_team_picks, CMsgGCCStrike15_v2_Predictions::GroupMatchTeamPick, 2
1274
- end
1275
-
1276
- class CMsgGCCStrike15_v2_Fantasy
1277
-
1278
- class FantasySlot
1279
- optional :type, :int32, 1
1280
- optional :pick, :int32, 2
1281
- optional :itemid, :uint64, 3
1282
- end
1283
-
1284
- class FantasyTeam
1285
- optional :sectionid, :int32, 1
1286
- repeated :slots, CMsgGCCStrike15_v2_Fantasy::FantasySlot, 2
1287
- end
1288
- optional :event_id, :uint32, 1
1289
- repeated :teams, CMsgGCCStrike15_v2_Fantasy::FantasyTeam, 2
1290
- end
1291
-
1292
- class CAttribute_String
1293
- optional :value, :string, 1
1294
- end
1295
-
1296
- class CMsgGCToGCReloadVersions
1297
- end
1298
-
1299
- class CMsgCStrike15Welcome
1300
- optional :store_item_hash, :uint32, 5
1301
- optional :timeplayedconsecutively, :uint32, 6
1302
- optional :time_first_played, :uint32, 10
1303
- optional :last_time_played, :uint32, 12
1304
- optional :last_ip_address, :uint32, 13
1305
- optional :gscookieid, :uint64, 18
1306
- optional :uniqueid, :uint64, 19
1307
- end
1308
-
1309
- class CMsgGCCStrike15_v2_ClientVarValueNotificationInfo
1310
- optional :value_name, :string, 1
1311
- optional :value_int, :int32, 2
1312
- optional :server_addr, :uint32, 3
1313
- optional :server_port, :uint32, 4
1314
- repeated :choked_blocks, :string, 5
1315
- end
1316
-
1317
- class CMsgGCCStrike15_v2_ServerVarValueNotificationInfo
1318
- optional :accountid, :uint32, 1
1319
- repeated :viewangles, :uint32, 2
1320
- optional :type, :uint32, 3
1321
- end
1322
-
1323
- class CMsgGCCStrike15_v2_GiftsLeaderboardRequest
1324
- end
1325
-
1326
- class CMsgGCCStrike15_v2_GiftsLeaderboardResponse
1327
-
1328
- class GiftLeaderboardEntry
1329
- optional :accountid, :uint32, 1
1330
- optional :gifts, :uint32, 2
1331
- end
1332
- optional :servertime, :uint32, 1
1333
- optional :time_period_seconds, :uint32, 2
1334
- optional :total_gifts_given, :uint32, 3
1335
- optional :total_givers, :uint32, 4
1336
- repeated :entries, CMsgGCCStrike15_v2_GiftsLeaderboardResponse::GiftLeaderboardEntry, 5
1337
- end
1338
-
1339
- class CMsgGCCStrike15_v2_ClientSubmitSurveyVote
1340
- optional :survey_id, :uint32, 1
1341
- optional :vote, :uint32, 2
1342
- end
1343
-
1344
- class CMsgGCCStrike15_v2_Server2GCClientValidate
1345
- optional :accountid, :uint32, 1
1346
- end
1347
-
1348
- class CMsgGCCStrike15_v2_Server2GCPureServerValidationFailure
1349
- optional :accountid, :uint32, 1
1350
- optional :path, :string, 2
1351
- optional :file, :string, 3
1352
- optional :crc, :uint32, 4
1353
- optional :hash, :int32, 5
1354
- optional :len, :int32, 6
1355
- optional :pack_number, :int32, 7
1356
- optional :pack_file_id, :int32, 8
1357
- end
1358
-
1359
- class CMsgGCCStrike15_v2_GC2ClientTournamentInfo
1360
- optional :eventid, :uint32, 1
1361
- optional :stageid, :uint32, 2
1362
- optional :game_type, :uint32, 3
1363
- repeated :teamids, :uint32, 4
1364
- end
1365
-
1366
- class CSOEconCoupon
1367
- optional :entryid, :uint32, 1
1368
- optional :defidx, :uint32, 2
1369
- optional :expiration_date, :fixed32, 3
1370
- end
1371
-
1372
- class CSOQuestProgress
1373
- optional :questid, :uint32, 1
1374
- optional :points_remaining, :uint32, 2
1375
- optional :bonus_points, :uint32, 3
1376
- end
1377
-
1378
- class CSOPersonaDataPublic
1379
- optional :player_level, :int32, 1
1380
- optional :commendation, PlayerCommendationInfo, 2
1381
- end
1382
-
1383
- class CMsgGC_GlobalGame_Subscribe
1384
- optional :ticket, :uint64, 1
1385
- end
1386
-
1387
- class CMsgGC_GlobalGame_Unsubscribe
1388
- optional :timeleft, :int32, 1
1389
- end
1390
-
1391
- class CMsgGC_GlobalGame_Play
1392
- optional :ticket, :uint64, 1
1393
- optional :gametimems, :uint32, 2
1394
- optional :msperpoint, :uint32, 3
1395
- end
1396
-
1397
- class CMsgGCCStrike15_v2_AcknowledgePenalty
1398
- optional :acknowledged, :int32, 1
1399
- end
1400
-
1401
- class CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin
1402
- end
1403
-
1404
- class CMsgGCCStrike15_v2_Client2GCStreamUnlock
1405
- optional :ticket, :uint64, 1
1406
- optional :os, :int32, 2
1407
- end