-
Notifications
You must be signed in to change notification settings - Fork 37
/
snapshot-apigen.txt
1927 lines (1927 loc) · 118 KB
/
snapshot-apigen.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CMsgJoinChatChannel
CMsgGCJoinChatChannel
CMsgJoinChatChannel
CMsgGCJoinChatChannel
CMsgJoinChatChannel
CMsgJoinChatChannel
CMsgDOTAJoinChatChannel
Request: k_EMsgGCJoinChatChannel matched to type: CMsgDOTAJoinChatChannel
Request: k_EMsgGCJoinChatChannel matched to response: k_EMsgGCJoinChatChannelResponse
CMsgJoinChatChannelResponse
CMsgGCJoinChatChannelResponse
CMsgJoinChatChannelResult
CMsgGCJoinChatChannelResult
CMsgJoinChatChannelResponse
CMsgJoinChatChannelResponse
CMsgDOTAJoinChatChannelResponse
Request: k_EMsgGCJoinChatChannelResponse matched to type: CMsgDOTAJoinChatChannelResponse
CMsgStartFindingMatch
Request: k_EMsgGCStartFindingMatch matched to type: CMsgStartFindingMatch
Request: k_EMsgGCStartFindingMatch matched to response: k_EMsgGCStartFindingMatchResponse
CMsgStartFindingMatchResponse
CMsgGCStartFindingMatchResponse
CMsgStartFindingMatchResult
Request: k_EMsgGCStartFindingMatchResponse matched to type: CMsgStartFindingMatchResult
CMsgAbandonCurrentGame
Request: k_EMsgGCAbandonCurrentGame matched to type: CMsgAbandonCurrentGame
CMsgStopFindingMatch
Request: k_EMsgGCStopFindingMatch matched to type: CMsgStopFindingMatch
CMsgPracticeLobbyLeave
Request: k_EMsgGCPracticeLobbyLeave matched to type: CMsgPracticeLobbyLeave
CMsgPracticeLobbyLaunch
Request: k_EMsgGCPracticeLobbyLaunch matched to type: CMsgPracticeLobbyLaunch
CMsgPracticeLobbyList
Request: k_EMsgGCPracticeLobbyList matched to type: CMsgPracticeLobbyList
Request: k_EMsgGCPracticeLobbyList matched to response: k_EMsgGCPracticeLobbyListResponse
CMsgPracticeLobbyListResponse
Request: k_EMsgGCPracticeLobbyListResponse matched to type: CMsgPracticeLobbyListResponse
CMsgPracticeLobbyJoin
Request: k_EMsgGCPracticeLobbyJoin matched to type: CMsgPracticeLobbyJoin
Request: k_EMsgGCPracticeLobbyJoin matched to response: k_EMsgGCPracticeLobbyJoinResponse
CMsgPracticeLobbyJoinResponse
Request: k_EMsgGCPracticeLobbyJoinResponse matched to type: CMsgPracticeLobbyJoinResponse
CMsgPracticeLobbySetDetails
Request: k_EMsgGCPracticeLobbySetDetails matched to type: CMsgPracticeLobbySetDetails
CMsgInitialQuestionnaireResponse
Request: k_EMsgGCInitialQuestionnaireResponse matched to type: CMsgInitialQuestionnaireResponse
CMsgBroadcastNotification
CMsgGCBroadcastNotification
CMsgBroadcastNotification
CMsgGCBroadcastNotification
CMsgBroadcastNotification
CMsgBroadcastNotification
CMsgDOTABroadcastNotification
Request: k_EMsgGCBroadcastNotification matched to type: CMsgDOTABroadcastNotification
CMsgRequestChatChannelList
CMsgGCRequestChatChannelList
CMsgRequestChatChannelList
CMsgGCRequestChatChannelList
CMsgRequestChatChannelList
CMsgRequestChatChannelList
CMsgDOTARequestChatChannelList
Request: k_EMsgGCRequestChatChannelList matched to type: CMsgDOTARequestChatChannelList
Request: k_EMsgGCRequestChatChannelList matched to response: k_EMsgGCRequestChatChannelListResponse
CMsgRequestChatChannelListResponse
CMsgGCRequestChatChannelListResponse
CMsgRequestChatChannelListResult
CMsgGCRequestChatChannelListResult
CMsgRequestChatChannelListResponse
CMsgRequestChatChannelListResponse
CMsgDOTARequestChatChannelListResponse
Request: k_EMsgGCRequestChatChannelListResponse matched to type: CMsgDOTARequestChatChannelListResponse
CMsgReadyUp
Request: k_EMsgGCReadyUp matched to type: CMsgReadyUp
CMsgKickedFromMatchmakingQueue
CMsgGCKickedFromMatchmakingQueue
CMsgKickedFromMatchmakingQueue
CMsgGCKickedFromMatchmakingQueue
CMsgKickedFromMatchmakingQueue
CMsgKickedFromMatchmakingQueue
CMsgDOTAKickedFromMatchmakingQueue
Request: k_EMsgGCKickedFromMatchmakingQueue matched to type: CMsgDOTAKickedFromMatchmakingQueue
CMsgSpectateFriendGame
Request: k_EMsgGCSpectateFriendGame matched to type: CMsgSpectateFriendGame
Request: k_EMsgGCSpectateFriendGame matched to response: k_EMsgGCSpectateFriendGameResponse
CMsgSpectateFriendGameResponse
Request: k_EMsgGCSpectateFriendGameResponse matched to type: CMsgSpectateFriendGameResponse
CMsgReportsRemainingRequest
CMsgGCReportsRemainingRequest
CMsgReportsRemainingRequest
CMsgGCReportsRemainingRequest
CMsgReportsRemainingRequest
CMsgReportsRemainingRequest
CMsgDOTAReportsRemainingRequest
Request: k_EMsgGCReportsRemainingRequest matched to type: CMsgDOTAReportsRemainingRequest
Request: k_EMsgGCReportsRemainingRequest matched to response: k_EMsgGCReportsRemainingResponse
CMsgReportsRemainingResponse
CMsgGCReportsRemainingResponse
CMsgReportsRemainingResult
CMsgGCReportsRemainingResult
CMsgReportsRemainingResponse
CMsgReportsRemainingResponse
CMsgDOTAReportsRemainingResponse
Request: k_EMsgGCReportsRemainingResponse matched to type: CMsgDOTAReportsRemainingResponse
CMsgSubmitPlayerReport
CMsgGCSubmitPlayerReport
CMsgSubmitPlayerReport
CMsgGCSubmitPlayerReport
CMsgSubmitPlayerReport
CMsgSubmitPlayerReport
CMsgDOTASubmitPlayerReport
Request: k_EMsgGCSubmitPlayerReport matched to type: CMsgDOTASubmitPlayerReport
Request: k_EMsgGCSubmitPlayerReport matched to response: k_EMsgGCSubmitPlayerReportResponse
CMsgSubmitPlayerReportResponse
CMsgGCSubmitPlayerReportResponse
CMsgSubmitPlayerReportResult
CMsgGCSubmitPlayerReportResult
CMsgSubmitPlayerReportResponse
CMsgSubmitPlayerReportResponse
CMsgDOTASubmitPlayerReportResponse
Request: k_EMsgGCSubmitPlayerReportResponse matched to type: CMsgDOTASubmitPlayerReportResponse
CMsgPracticeLobbyKick
Request: k_EMsgGCPracticeLobbyKick matched to type: CMsgPracticeLobbyKick
CMsgSubmitPlayerReportV2
CMsgGCSubmitPlayerReportV2
CMsgSubmitPlayerReportV2
CMsgGCSubmitPlayerReportV2
CMsgSubmitPlayerReportV2
CMsgSubmitPlayerReportV2
CMsgDOTASubmitPlayerReportV2
Request: k_EMsgGCSubmitPlayerReportV2 matched to type: CMsgDOTASubmitPlayerReportV2
CMsgSubmitPlayerReportResponseV2
CMsgGCSubmitPlayerReportResponseV2
CMsgSubmitPlayerReportResultV2
CMsgGCSubmitPlayerReportResultV2
CMsgSubmitPlayerReportResponseV2
CMsgSubmitPlayerReportResponseV2
CMsgDOTASubmitPlayerReportResponseV2
Request: k_EMsgGCSubmitPlayerReportResponseV2 matched to type: CMsgDOTASubmitPlayerReportResponseV2
CMsgWatchGame
Request: k_EMsgGCWatchGame matched to type: CMsgWatchGame
Request: k_EMsgGCWatchGame matched to response: k_EMsgGCWatchGameResponse
CMsgWatchGameResponse
Request: k_EMsgGCWatchGameResponse matched to type: CMsgWatchGameResponse
CMsgMatchDetailsRequest
CMsgGCMatchDetailsRequest
Request: k_EMsgGCMatchDetailsRequest matched to type: CMsgGCMatchDetailsRequest
Request: k_EMsgGCMatchDetailsRequest matched to response: k_EMsgGCMatchDetailsResponse
CMsgMatchDetailsResponse
CMsgGCMatchDetailsResponse
Request: k_EMsgGCMatchDetailsResponse matched to type: CMsgGCMatchDetailsResponse
CMsgCancelWatchGame
Request: k_EMsgGCCancelWatchGame matched to type: CMsgCancelWatchGame
CMsgPopup
CMsgGCPopup
CMsgPopup
CMsgGCPopup
CMsgPopup
CMsgPopup
CMsgDOTAPopup
Request: k_EMsgGCPopup matched to type: CMsgDOTAPopup
CMsgFriendPracticeLobbyListRequest
Request: k_EMsgGCFriendPracticeLobbyListRequest matched to type: CMsgFriendPracticeLobbyListRequest
Request: k_EMsgGCFriendPracticeLobbyListRequest matched to response: k_EMsgGCFriendPracticeLobbyListResponse
CMsgFriendPracticeLobbyListResponse
Request: k_EMsgGCFriendPracticeLobbyListResponse matched to type: CMsgFriendPracticeLobbyListResponse
CMsgCreateTeam
CMsgGCCreateTeam
CMsgCreateTeam
CMsgGCCreateTeam
CMsgCreateTeam
CMsgCreateTeam
CMsgDOTACreateTeam
Request: k_EMsgGCCreateTeam matched to type: CMsgDOTACreateTeam
Request: k_EMsgGCCreateTeam matched to response: k_EMsgGCCreateTeamResponse
CMsgCreateTeamResponse
CMsgGCCreateTeamResponse
CMsgCreateTeamResult
CMsgGCCreateTeamResult
CMsgCreateTeamResponse
CMsgCreateTeamResponse
CMsgDOTACreateTeamResponse
Request: k_EMsgGCCreateTeamResponse matched to type: CMsgDOTACreateTeamResponse
CMsgTeamInvite_InviterToGC
CMsgGCTeamInvite_InviterToGC
CMsgTeamInvite_InviterToGC
CMsgGCTeamInvite_InviterToGC
CMsgTeamInvite_InviterToGC
CMsgTeamInvite_InviterToGC
CMsgDOTATeamInvite_InviterToGC
Request: k_EMsgGCTeamInvite_InviterToGC matched to type: CMsgDOTATeamInvite_InviterToGC
Request: k_EMsgGCTeamInvite_InviterToGC matched to response: k_EMsgGCTeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCImmediateResponseToInviter
CMsgGCTeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCImmediateResultToInviter
CMsgGCTeamInvite_GCImmediateResultToInviter
CMsgTeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCImmediateResponseToInviter
CMsgDOTATeamInvite_GCImmediateResponseToInviter
Request: k_EMsgGCTeamInvite_GCImmediateResponseToInviter matched to type: CMsgDOTATeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCImmediateResponseToInviter
CMsgGCTeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCImmediateResultToInviter
CMsgGCTeamInvite_GCImmediateResultToInviter
CMsgTeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCImmediateResponseToInviter
CMsgDOTATeamInvite_GCImmediateResponseToInviter
Request: k_EMsgGCTeamInvite_GCImmediateResponseToInviter matched to type: CMsgDOTATeamInvite_GCImmediateResponseToInviter
CMsgTeamInvite_GCRequestToInvitee
CMsgGCTeamInvite_GCRequestToInvitee
CMsgTeamInvite_GCRequestToInvitee
CMsgGCTeamInvite_GCRequestToInvitee
CMsgTeamInvite_GCRequestToInvitee
CMsgTeamInvite_GCRequestToInvitee
CMsgDOTATeamInvite_GCRequestToInvitee
Request: k_EMsgGCTeamInvite_GCRequestToInvitee matched to type: CMsgDOTATeamInvite_GCRequestToInvitee
CMsgTeamInvite_InviteeResponseToGC
CMsgGCTeamInvite_InviteeResponseToGC
CMsgTeamInvite_InviteeResultToGC
CMsgGCTeamInvite_InviteeResultToGC
CMsgTeamInvite_InviteeResponseToGC
CMsgTeamInvite_InviteeResponseToGC
CMsgDOTATeamInvite_InviteeResponseToGC
Request: k_EMsgGCTeamInvite_InviteeResponseToGC matched to type: CMsgDOTATeamInvite_InviteeResponseToGC
CMsgTeamInvite_GCResponseToInviter
CMsgGCTeamInvite_GCResponseToInviter
CMsgTeamInvite_GCResultToInviter
CMsgGCTeamInvite_GCResultToInviter
CMsgTeamInvite_GCResponseToInviter
CMsgTeamInvite_GCResponseToInviter
CMsgDOTATeamInvite_GCResponseToInviter
Request: k_EMsgGCTeamInvite_GCResponseToInviter matched to type: CMsgDOTATeamInvite_GCResponseToInviter
CMsgTeamInvite_GCResponseToInvitee
CMsgGCTeamInvite_GCResponseToInvitee
CMsgTeamInvite_GCResultToInvitee
CMsgGCTeamInvite_GCResultToInvitee
CMsgTeamInvite_GCResponseToInvitee
CMsgTeamInvite_GCResponseToInvitee
CMsgDOTATeamInvite_GCResponseToInvitee
Request: k_EMsgGCTeamInvite_GCResponseToInvitee matched to type: CMsgDOTATeamInvite_GCResponseToInvitee
CMsgKickTeamMember
CMsgGCKickTeamMember
CMsgKickTeamMember
CMsgGCKickTeamMember
CMsgKickTeamMember
CMsgKickTeamMember
CMsgDOTAKickTeamMember
Request: k_EMsgGCKickTeamMember matched to type: CMsgDOTAKickTeamMember
Request: k_EMsgGCKickTeamMember matched to response: k_EMsgGCKickTeamMemberResponse
CMsgKickTeamMemberResponse
CMsgGCKickTeamMemberResponse
CMsgKickTeamMemberResult
CMsgGCKickTeamMemberResult
CMsgKickTeamMemberResponse
CMsgKickTeamMemberResponse
CMsgDOTAKickTeamMemberResponse
Request: k_EMsgGCKickTeamMemberResponse matched to type: CMsgDOTAKickTeamMemberResponse
CMsgLeaveTeam
CMsgGCLeaveTeam
CMsgLeaveTeam
CMsgGCLeaveTeam
CMsgLeaveTeam
CMsgLeaveTeam
CMsgDOTALeaveTeam
Request: k_EMsgGCLeaveTeam matched to type: CMsgDOTALeaveTeam
Request: k_EMsgGCLeaveTeam matched to response: k_EMsgGCLeaveTeamResponse
CMsgLeaveTeamResponse
CMsgGCLeaveTeamResponse
CMsgLeaveTeamResult
CMsgGCLeaveTeamResult
CMsgLeaveTeamResponse
CMsgLeaveTeamResponse
CMsgDOTALeaveTeamResponse
Request: k_EMsgGCLeaveTeamResponse matched to type: CMsgDOTALeaveTeamResponse
CMsgApplyTeamToPracticeLobby
Request: k_EMsgGCApplyTeamToPracticeLobby matched to type: CMsgApplyTeamToPracticeLobby
CMsgTransferTeamAdmin
CMsgGCTransferTeamAdmin
CMsgTransferTeamAdmin
CMsgGCTransferTeamAdmin
CMsgTransferTeamAdmin
CMsgTransferTeamAdmin
CMsgDOTATransferTeamAdmin
Request: k_EMsgGCTransferTeamAdmin matched to type: CMsgDOTATransferTeamAdmin
Request: k_EMsgGCTransferTeamAdmin matched to response: k_EMsgGCTransferTeamAdminResponse
CMsgTransferTeamAdminResponse
CMsgGCTransferTeamAdminResponse
CMsgTransferTeamAdminResult
CMsgGCTransferTeamAdminResult
CMsgTransferTeamAdminResponse
CMsgTransferTeamAdminResponse
CMsgDOTATransferTeamAdminResponse
Request: k_EMsgGCTransferTeamAdminResponse matched to type: CMsgDOTATransferTeamAdminResponse
CMsgPracticeLobbyJoinBroadcastChannel
Request: k_EMsgGCPracticeLobbyJoinBroadcastChannel matched to type: CMsgPracticeLobbyJoinBroadcastChannel
CMsgEditTeamDetails
CMsgGCEditTeamDetails
CMsgEditTeamDetails
CMsgGCEditTeamDetails
CMsgEditTeamDetails
CMsgEditTeamDetails
CMsgDOTAEditTeamDetails
Request: k_EMsgGCEditTeamDetails matched to type: CMsgDOTAEditTeamDetails
Request: k_EMsgGCEditTeamDetails matched to response: k_EMsgGCEditTeamDetailsResponse
CMsgEditTeamDetailsResponse
CMsgGCEditTeamDetailsResponse
CMsgEditTeamDetailsResult
CMsgGCEditTeamDetailsResult
CMsgEditTeamDetailsResponse
CMsgEditTeamDetailsResponse
CMsgDOTAEditTeamDetailsResponse
Request: k_EMsgGCEditTeamDetailsResponse matched to type: CMsgDOTAEditTeamDetailsResponse
CMsgReadyUpStatus
Request: k_EMsgGCReadyUpStatus matched to type: CMsgReadyUpStatus
CMsgBalancedShuffleLobby
Request: k_EMsgGCBalancedShuffleLobby matched to type: CMsgBalancedShuffleLobby
CMsgMatchmakingStatsRequest
CMsgGCMatchmakingStatsRequest
CMsgMatchmakingStatsRequest
CMsgGCMatchmakingStatsRequest
CMsgMatchmakingStatsRequest
CMsgMatchmakingStatsRequest
CMsgDOTAMatchmakingStatsRequest
Request: k_EMsgGCMatchmakingStatsRequest matched to type: CMsgDOTAMatchmakingStatsRequest
Request: k_EMsgGCMatchmakingStatsRequest matched to response: k_EMsgGCMatchmakingStatsResponse
CMsgMatchmakingStatsResponse
CMsgGCMatchmakingStatsResponse
CMsgMatchmakingStatsResult
CMsgGCMatchmakingStatsResult
CMsgMatchmakingStatsResponse
CMsgMatchmakingStatsResponse
CMsgDOTAMatchmakingStatsResponse
Request: k_EMsgGCMatchmakingStatsResponse matched to type: CMsgDOTAMatchmakingStatsResponse
CMsgBotGameCreate
Request: k_EMsgGCBotGameCreate matched to type: CMsgBotGameCreate
CMsgSetMatchHistoryAccess
CMsgGCSetMatchHistoryAccess
CMsgSetMatchHistoryAccess
CMsgGCSetMatchHistoryAccess
CMsgSetMatchHistoryAccess
CMsgSetMatchHistoryAccess
CMsgDOTASetMatchHistoryAccess
Request: k_EMsgGCSetMatchHistoryAccess matched to type: CMsgDOTASetMatchHistoryAccess
Request: k_EMsgGCSetMatchHistoryAccess matched to response: k_EMsgGCSetMatchHistoryAccessResponse
CMsgSetMatchHistoryAccessResponse
CMsgGCSetMatchHistoryAccessResponse
CMsgSetMatchHistoryAccessResult
CMsgGCSetMatchHistoryAccessResult
CMsgSetMatchHistoryAccessResponse
CMsgSetMatchHistoryAccessResponse
CMsgDOTASetMatchHistoryAccessResponse
Request: k_EMsgGCSetMatchHistoryAccessResponse matched to type: CMsgDOTASetMatchHistoryAccessResponse
CMsgUpgradeLeagueItem
Request: k_EMsgUpgradeLeagueItem matched to type: CMsgUpgradeLeagueItem
Request: k_EMsgUpgradeLeagueItem matched to response: k_EMsgUpgradeLeagueItemResponse
CMsgUpgradeLeagueItemResponse
Request: k_EMsgUpgradeLeagueItemResponse matched to type: CMsgUpgradeLeagueItemResponse
CMsgWatchDownloadedReplay
CMsgGCWatchDownloadedReplay
Request: k_EMsgGCWatchDownloadedReplay matched to type: CMsgGCWatchDownloadedReplay
CMsgClientsRejoinChatChannels
Request: k_EMsgClientsRejoinChatChannels matched to type: CMsgClientsRejoinChatChannels
CMsgLeaveChatChannel
CMsgGCLeaveChatChannel
CMsgLeaveChatChannel
CMsgGCLeaveChatChannel
CMsgLeaveChatChannel
CMsgLeaveChatChannel
CMsgDOTALeaveChatChannel
Request: k_EMsgGCLeaveChatChannel matched to type: CMsgDOTALeaveChatChannel
CMsgChatMessage
CMsgGCChatMessage
CMsgChatMessage
CMsgGCChatMessage
CMsgChatMessage
CMsgChatMessage
CMsgDOTAChatMessage
Request: k_EMsgGCChatMessage matched to type: CMsgDOTAChatMessage
CMsgGetHeroStandings
CMsgGCGetHeroStandings
Request: k_EMsgGCGetHeroStandings matched to type: CMsgGCGetHeroStandings
Request: k_EMsgGCGetHeroStandings matched to response: k_EMsgGCGetHeroStandingsResponse
CMsgGetHeroStandingsResponse
CMsgGCGetHeroStandingsResponse
Request: k_EMsgGCGetHeroStandingsResponse matched to type: CMsgGCGetHeroStandingsResponse
CMsgItemEditorReservationsRequest
CMsgGCItemEditorReservationsRequest
Request: k_EMsgGCItemEditorReservationsRequest matched to type: CMsgGCItemEditorReservationsRequest
Request: k_EMsgGCItemEditorReservationsRequest matched to response: k_EMsgGCItemEditorReservationsResponse
CMsgItemEditorReservationsResponse
CMsgGCItemEditorReservationsResponse
Request: k_EMsgGCItemEditorReservationsResponse matched to type: CMsgGCItemEditorReservationsResponse
CMsgItemEditorReserveItemDef
CMsgGCItemEditorReserveItemDef
Request: k_EMsgGCItemEditorReserveItemDef matched to type: CMsgGCItemEditorReserveItemDef
Request: k_EMsgGCItemEditorReserveItemDef matched to response: k_EMsgGCItemEditorReserveItemDefResponse
CMsgItemEditorReserveItemDefResponse
CMsgGCItemEditorReserveItemDefResponse
Request: k_EMsgGCItemEditorReserveItemDefResponse matched to type: CMsgGCItemEditorReserveItemDefResponse
CMsgItemEditorReleaseReservation
CMsgGCItemEditorReleaseReservation
Request: k_EMsgGCItemEditorReleaseReservation matched to type: CMsgGCItemEditorReleaseReservation
Request: k_EMsgGCItemEditorReleaseReservation matched to response: k_EMsgGCItemEditorReleaseReservationResponse
CMsgItemEditorReleaseReservationResponse
CMsgGCItemEditorReleaseReservationResponse
Request: k_EMsgGCItemEditorReleaseReservationResponse matched to type: CMsgGCItemEditorReleaseReservationResponse
CMsgFantasyFinalPlayerStats
CMsgGCFantasyFinalPlayerStats
CMsgFantasyFinalPlayerStats
CMsgGCFantasyFinalPlayerStats
CMsgFantasyFinalPlayerStats
CMsgFantasyFinalPlayerStats
CMsgDOTAFantasyFinalPlayerStats
Request: k_EMsgGCFantasyFinalPlayerStats matched to type: CMsgDOTAFantasyFinalPlayerStats
CMsgFlipLobbyTeams
Request: k_EMsgGCFlipLobbyTeams matched to type: CMsgFlipLobbyTeams
CMsgNotifyAccountFlagsChange
CMsgGCNotifyAccountFlagsChange
CMsgNotifyAccountFlagsChange
CMsgGCNotifyAccountFlagsChange
CMsgNotifyAccountFlagsChange
CMsgNotifyAccountFlagsChange
CMsgDOTANotifyAccountFlagsChange
Request: k_EMsgGCNotifyAccountFlagsChange matched to type: CMsgDOTANotifyAccountFlagsChange
CMsgSetProfilePrivacy
CMsgGCSetProfilePrivacy
CMsgSetProfilePrivacy
CMsgGCSetProfilePrivacy
CMsgSetProfilePrivacy
CMsgSetProfilePrivacy
CMsgDOTASetProfilePrivacy
Request: k_EMsgGCSetProfilePrivacy matched to type: CMsgDOTASetProfilePrivacy
Request: k_EMsgGCSetProfilePrivacy matched to response: k_EMsgGCSetProfilePrivacyResponse
CMsgSetProfilePrivacyResponse
CMsgGCSetProfilePrivacyResponse
CMsgSetProfilePrivacyResult
CMsgGCSetProfilePrivacyResult
CMsgSetProfilePrivacyResponse
CMsgSetProfilePrivacyResponse
CMsgDOTASetProfilePrivacyResponse
Request: k_EMsgGCSetProfilePrivacyResponse matched to type: CMsgDOTASetProfilePrivacyResponse
CMsgClientSuspended
Request: k_EMsgGCClientSuspended matched to type: CMsgClientSuspended
CMsgPartyMemberSetCoach
CMsgGCPartyMemberSetCoach
CMsgPartyMemberSetCoach
CMsgGCPartyMemberSetCoach
CMsgPartyMemberSetCoach
CMsgPartyMemberSetCoach
CMsgDOTAPartyMemberSetCoach
Request: k_EMsgGCPartyMemberSetCoach matched to type: CMsgDOTAPartyMemberSetCoach
CMsgPracticeLobbySetCoach
Request: k_EMsgGCPracticeLobbySetCoach matched to type: CMsgPracticeLobbySetCoach
CMsgChatModeratorBan
CMsgGCChatModeratorBan
CMsgChatModeratorBan
CMsgGCChatModeratorBan
CMsgChatModeratorBan
CMsgChatModeratorBan
CMsgDOTAChatModeratorBan
Request: k_EMsgGCChatModeratorBan matched to type: CMsgDOTAChatModeratorBan
CMsgLobbyUpdateBroadcastChannelInfo
CMsgGCLobbyUpdateBroadcastChannelInfo
Request: k_EMsgGCLobbyUpdateBroadcastChannelInfo matched to type: CMsgGCLobbyUpdateBroadcastChannelInfo
CMsgDOTAGetEventPoints
Request: k_EMsgDOTAGetEventPoints matched to type: CMsgDOTAGetEventPoints
Request: k_EMsgDOTAGetEventPoints matched to response: k_EMsgDOTAGetEventPointsResponse
CMsgDOTAGetEventPointsResponse
Request: k_EMsgDOTAGetEventPointsResponse matched to type: CMsgDOTAGetEventPointsResponse
CMsgPartyLeaderWatchGamePrompt
Request: k_EMsgGCPartyLeaderWatchGamePrompt matched to type: CMsgPartyLeaderWatchGamePrompt
Request: k_EMsgGCCompendiumSetSelection matched to response: k_EMsgGCCompendiumSetSelectionResponse
CMsgCompendiumDataRequest
CMsgGCCompendiumDataRequest
CMsgCompendiumDataRequest
CMsgGCCompendiumDataRequest
CMsgCompendiumDataRequest
CMsgCompendiumDataRequest
CMsgDOTACompendiumDataRequest
Request: k_EMsgGCCompendiumDataRequest matched to type: CMsgDOTACompendiumDataRequest
Request: k_EMsgGCCompendiumDataRequest matched to response: k_EMsgGCCompendiumDataResponse
CMsgCompendiumDataResponse
CMsgGCCompendiumDataResponse
CMsgCompendiumDataResult
CMsgGCCompendiumDataResult
CMsgCompendiumDataResponse
CMsgCompendiumDataResponse
CMsgDOTACompendiumDataResponse
Request: k_EMsgGCCompendiumDataResponse matched to type: CMsgDOTACompendiumDataResponse
CMsgDOTAGetPlayerMatchHistory
Request: k_EMsgDOTAGetPlayerMatchHistory matched to type: CMsgDOTAGetPlayerMatchHistory
Request: k_EMsgDOTAGetPlayerMatchHistory matched to response: k_EMsgDOTAGetPlayerMatchHistoryResponse
CMsgDOTAGetPlayerMatchHistoryResponse
Request: k_EMsgDOTAGetPlayerMatchHistoryResponse matched to type: CMsgDOTAGetPlayerMatchHistoryResponse
CMsgNotificationsRequest
CMsgGCNotificationsRequest
Request: k_EMsgGCNotificationsRequest matched to type: CMsgGCNotificationsRequest
Request: k_EMsgGCNotificationsRequest matched to response: k_EMsgGCNotificationsResponse
CMsgNotificationsResponse
CMsgGCNotificationsResponse
Request: k_EMsgGCNotificationsResponse matched to type: CMsgGCNotificationsResponse
CMsgLeagueAdminList
Request: k_EMsgGCLeagueAdminList matched to type: CMsgLeagueAdminList
CMsgNotificationsMarkReadRequest
CMsgGCNotificationsMarkReadRequest
Request: k_EMsgGCNotificationsMarkReadRequest matched to type: CMsgGCNotificationsMarkReadRequest
CMsgPlayerInfoSubmit
CMsgGCPlayerInfoSubmit
Request: k_EMsgGCPlayerInfoSubmit matched to type: CMsgGCPlayerInfoSubmit
Request: k_EMsgGCPlayerInfoSubmit matched to response: k_EMsgGCPlayerInfoSubmitResponse
CMsgPlayerInfoSubmitResponse
CMsgGCPlayerInfoSubmitResponse
Request: k_EMsgGCPlayerInfoSubmitResponse matched to type: CMsgGCPlayerInfoSubmitResponse
CMsgDOTAWeekendTourneySchedule
CMsgGCDOTAWeekendTourneySchedule
CMsgDOTAWeekendTourneySchedule
CMsgGCDOTAWeekendTourneySchedule
CMsgWeekendTourneySchedule
Request: k_EMsgDOTAWeekendTourneySchedule matched to type: CMsgWeekendTourneySchedule
CMsgJoinableCustomGameModesRequest
Request: k_EMsgGCJoinableCustomGameModesRequest matched to type: CMsgJoinableCustomGameModesRequest
Request: k_EMsgGCJoinableCustomGameModesRequest matched to response: k_EMsgGCJoinableCustomGameModesResponse
CMsgJoinableCustomGameModesResponse
Request: k_EMsgGCJoinableCustomGameModesResponse matched to type: CMsgJoinableCustomGameModesResponse
CMsgJoinableCustomLobbiesRequest
Request: k_EMsgGCJoinableCustomLobbiesRequest matched to type: CMsgJoinableCustomLobbiesRequest
Request: k_EMsgGCJoinableCustomLobbiesRequest matched to response: k_EMsgGCJoinableCustomLobbiesResponse
CMsgJoinableCustomLobbiesResponse
Request: k_EMsgGCJoinableCustomLobbiesResponse matched to type: CMsgJoinableCustomLobbiesResponse
CMsgQuickJoinCustomLobby
Request: k_EMsgGCQuickJoinCustomLobby matched to type: CMsgQuickJoinCustomLobby
Request: k_EMsgGCQuickJoinCustomLobby matched to response: k_EMsgGCQuickJoinCustomLobbyResponse
CMsgQuickJoinCustomLobbyResponse
Request: k_EMsgGCQuickJoinCustomLobbyResponse matched to type: CMsgQuickJoinCustomLobbyResponse
CMsgHasItemQuery
CMsgGCHasItemQuery
CMsgHasItemQuery
CMsgGCHasItemQuery
CMsgHasItemQuery
CMsgHasItemQuery
CMsgDOTAHasItemQuery
Request: k_EMsgGCHasItemQuery matched to type: CMsgDOTAHasItemQuery
CMsgToClientTournamentItemDrop
CMsgGCToClientTournamentItemDrop
Request: k_EMsgGCToClientTournamentItemDrop matched to type: CMsgGCToClientTournamentItemDrop
CMsgClientToGCEmoticonDataRequest
Request: k_EMsgClientToGCEmoticonDataRequest matched to type: CMsgClientToGCEmoticonDataRequest
Request: k_EMsgClientToGCEmoticonDataRequest matched to response: k_EMsgGCToClientEmoticonData
CMsgToClientEmoticonData
CMsgGCToClientEmoticonData
Request: k_EMsgGCToClientEmoticonData matched to type: CMsgGCToClientEmoticonData
CMsgToClientEmoticonData
CMsgGCToClientEmoticonData
Request: k_EMsgGCToClientEmoticonData matched to type: CMsgGCToClientEmoticonData
CMsgPracticeLobbyToggleBroadcastChannelCameramanStatus
Request: k_EMsgGCPracticeLobbyToggleBroadcastChannelCameramanStatus matched to type: CMsgPracticeLobbyToggleBroadcastChannelCameramanStatus
CMsgDOTARedeemItem
Request: k_EMsgDOTARedeemItem matched to type: CMsgDOTARedeemItem
Request: k_EMsgDOTARedeemItem matched to response: k_EMsgDOTARedeemItemResponse
CMsgDOTARedeemItemResponse
Request: k_EMsgDOTARedeemItemResponse matched to type: CMsgDOTARedeemItemResponse
CMsgClientToGCGetAllHeroProgress
Request: k_EMsgClientToGCGetAllHeroProgress matched to type: CMsgClientToGCGetAllHeroProgress
Request: k_EMsgClientToGCGetAllHeroProgress matched to response: k_EMsgClientToGCGetAllHeroProgressResponse
CMsgClientToGCGetAllHeroProgressResponse
Request: k_EMsgClientToGCGetAllHeroProgressResponse matched to type: CMsgClientToGCGetAllHeroProgressResponse
CMsgClientToGCGetTrophyList
Request: k_EMsgClientToGCGetTrophyList matched to type: CMsgClientToGCGetTrophyList
Request: k_EMsgClientToGCGetTrophyList matched to response: k_EMsgClientToGCGetTrophyListResponse
CMsgClientToGCGetTrophyListResponse
Request: k_EMsgClientToGCGetTrophyListResponse matched to type: CMsgClientToGCGetTrophyListResponse
CMsgToClientTrophyAwarded
CMsgGCToClientTrophyAwarded
Request: k_EMsgGCToClientTrophyAwarded matched to type: CMsgGCToClientTrophyAwarded
CMsgClientToGCGetProfileCard
Request: k_EMsgClientToGCGetProfileCard matched to type: CMsgClientToGCGetProfileCard
Request: k_EMsgClientToGCGetProfileCard matched to response: k_EMsgClientToGCGetProfileCardResponse
CMsgClientToGCGetBattleReport
Request: k_EMsgClientToGCGetBattleReport matched to type: CMsgClientToGCGetBattleReport
Request: k_EMsgClientToGCGetBattleReport matched to response: k_EMsgClientToGCGetBattleReportResponse
CMsgClientToGCGetBattleReportResponse
Request: k_EMsgClientToGCGetBattleReportResponse matched to type: CMsgClientToGCGetBattleReportResponse
CMsgClientToGCSetProfileCardSlots
Request: k_EMsgClientToGCSetProfileCardSlots matched to type: CMsgClientToGCSetProfileCardSlots
CMsgClientToGCGetBattleReportAggregateStats
Request: k_EMsgClientToGCGetBattleReportAggregateStats matched to type: CMsgClientToGCGetBattleReportAggregateStats
Request: k_EMsgClientToGCGetBattleReportAggregateStats matched to response: k_EMsgClientToGCGetBattleReportAggregateStatsResponse
CMsgClientToGCGetBattleReportAggregateStatsResponse
Request: k_EMsgClientToGCGetBattleReportAggregateStatsResponse matched to type: CMsgClientToGCGetBattleReportAggregateStatsResponse
CMsgClientToGCGetBattleReportInfo
Request: k_EMsgClientToGCGetBattleReportInfo matched to type: CMsgClientToGCGetBattleReportInfo
Request: k_EMsgClientToGCGetBattleReportInfo matched to response: k_EMsgClientToGCGetBattleReportInfoResponse
CMsgClientToGCGetBattleReportInfoResponse
Request: k_EMsgClientToGCGetBattleReportInfoResponse matched to type: CMsgClientToGCGetBattleReportInfoResponse
CMsgClientToGCCreateHeroStatue
Request: k_EMsgClientToGCCreateHeroStatue matched to type: CMsgClientToGCCreateHeroStatue
CMsgToClientHeroStatueCreateResult
CMsgGCToClientHeroStatueCreateResult
Request: k_EMsgGCToClientHeroStatueCreateResult matched to type: CMsgGCToClientHeroStatueCreateResult
CMsgClientToGCAcknowledgeBattleReport
Request: k_EMsgClientToGCAcknowledgeBattleReport matched to type: CMsgClientToGCAcknowledgeBattleReport
Request: k_EMsgClientToGCAcknowledgeBattleReport matched to response: k_EMsgClientToGCAcknowledgeBattleReportResponse
CMsgClientToGCAcknowledgeBattleReportResponse
Request: k_EMsgClientToGCAcknowledgeBattleReportResponse matched to type: CMsgClientToGCAcknowledgeBattleReportResponse
CMsgClientToGCGetBattleReportMatchHistory
Request: k_EMsgClientToGCGetBattleReportMatchHistory matched to type: CMsgClientToGCGetBattleReportMatchHistory
Request: k_EMsgClientToGCGetBattleReportMatchHistory matched to response: k_EMsgClientToGCGetBattleReportMatchHistoryResponse
CMsgClientToGCGetBattleReportMatchHistoryResponse
Request: k_EMsgClientToGCGetBattleReportMatchHistoryResponse matched to type: CMsgClientToGCGetBattleReportMatchHistoryResponse
CMsgLobbyEventPoints
Request: k_EMsgLobbyEventPoints matched to type: CMsgLobbyEventPoints
CMsgToClientSteamDatagramTicket
CMsgGCToClientSteamDatagramTicket
Request: k_EMsgGCToClientSteamDatagramTicket matched to type: CMsgGCToClientSteamDatagramTicket
CMsgClientToGCRerollPlayerChallenge
Request: k_EMsgClientToGCRerollPlayerChallenge matched to type: CMsgClientToGCRerollPlayerChallenge
CMsgClientToGCApplyGemCombiner
Request: k_EMsgClientToGCApplyGemCombiner matched to type: CMsgClientToGCApplyGemCombiner
CMsgClientToGCGetAllHeroOrder
Request: k_EMsgClientToGCGetAllHeroOrder matched to type: CMsgClientToGCGetAllHeroOrder
Request: k_EMsgClientToGCGetAllHeroOrder matched to response: k_EMsgClientToGCGetAllHeroOrderResponse
CMsgClientToGCGetAllHeroOrderResponse
Request: k_EMsgClientToGCGetAllHeroOrderResponse matched to type: CMsgClientToGCGetAllHeroOrderResponse
CMsgToClientRequestLaneSelection
CMsgGCToClientRequestLaneSelection
Request: k_EMsgGCToClientRequestLaneSelection matched to type: CMsgGCToClientRequestLaneSelection
CMsgClientToGCPlayerCardSpecificPurchaseRequest
Request: k_EMsgClientToGCPlayerCardSpecificPurchaseRequest matched to type: CMsgClientToGCPlayerCardSpecificPurchaseRequest
Request: k_EMsgClientToGCPlayerCardSpecificPurchaseRequest matched to response: k_EMsgClientToGCPlayerCardSpecificPurchaseResponse
CMsgClientToGCPlayerCardSpecificPurchaseResponse
Request: k_EMsgClientToGCPlayerCardSpecificPurchaseResponse matched to type: CMsgClientToGCPlayerCardSpecificPurchaseResponse
CMsgDOTALeagueAvailableLobbyNodesRequest
Request: k_EMsgDOTALeagueAvailableLobbyNodesRequest matched to type: CMsgDOTALeagueAvailableLobbyNodesRequest
Request: k_EMsgDOTALeagueAvailableLobbyNodesRequest matched to response: k_EMsgDOTALeagueAvailableLobbyNodes
CMsgDOTALeagueAvailableLobbyNodes
Request: k_EMsgDOTALeagueAvailableLobbyNodes matched to type: CMsgDOTALeagueAvailableLobbyNodes
CMsgDOTALeagueAvailableLobbyNodes
Request: k_EMsgDOTALeagueAvailableLobbyNodes matched to type: CMsgDOTALeagueAvailableLobbyNodes
CMsgClientToGCGetFilteredPlayers
Request: k_EMsgClientToGCGetFilteredPlayers matched to type: CMsgClientToGCGetFilteredPlayers
Request: k_EMsgClientToGCGetFilteredPlayers matched to response: k_EMsgGCToClientGetFilteredPlayersResponse
CMsgToClientGetFilteredPlayersResponse
CMsgGCToClientGetFilteredPlayersResponse
Request: k_EMsgGCToClientGetFilteredPlayersResponse matched to type: CMsgGCToClientGetFilteredPlayersResponse
CMsgClientToGCRemoveFilteredPlayer
Request: k_EMsgClientToGCRemoveFilteredPlayer matched to type: CMsgClientToGCRemoveFilteredPlayer
Request: k_EMsgClientToGCRemoveFilteredPlayer matched to response: k_EMsgGCToClientRemoveFilteredPlayerResponse
CMsgToClientRemoveFilteredPlayerResponse
CMsgGCToClientRemoveFilteredPlayerResponse
Request: k_EMsgGCToClientRemoveFilteredPlayerResponse matched to type: CMsgGCToClientRemoveFilteredPlayerResponse
CMsgToClientPlayerBeaconState
CMsgGCToClientPlayerBeaconState
Request: k_EMsgGCToClientPlayerBeaconState matched to type: CMsgGCToClientPlayerBeaconState
CMsgToClientPartyBeaconUpdate
CMsgGCToClientPartyBeaconUpdate
Request: k_EMsgGCToClientPartyBeaconUpdate matched to type: CMsgGCToClientPartyBeaconUpdate
CMsgToClientPartySearchInvite
CMsgGCToClientPartySearchInvite
Request: k_EMsgGCToClientPartySearchInvite matched to type: CMsgGCToClientPartySearchInvite
CMsgClientToGCUpdatePartyBeacon
Request: k_EMsgClientToGCUpdatePartyBeacon matched to type: CMsgClientToGCUpdatePartyBeacon
CMsgClientToGCRequestActiveBeaconParties
Request: k_EMsgClientToGCRequestActiveBeaconParties matched to type: CMsgClientToGCRequestActiveBeaconParties
Request: k_EMsgClientToGCRequestActiveBeaconParties matched to response: k_EMsgGCToClientRequestActiveBeaconPartiesResponse
CMsgToClientRequestActiveBeaconPartiesResponse
CMsgGCToClientRequestActiveBeaconPartiesResponse
Request: k_EMsgGCToClientRequestActiveBeaconPartiesResponse matched to type: CMsgGCToClientRequestActiveBeaconPartiesResponse
CMsgClientToGCManageFavorites
Request: k_EMsgClientToGCManageFavorites matched to type: CMsgClientToGCManageFavorites
Request: k_EMsgClientToGCManageFavorites matched to response: k_EMsgGCToClientManageFavoritesResponse
CMsgToClientManageFavoritesResponse
CMsgGCToClientManageFavoritesResponse
Request: k_EMsgGCToClientManageFavoritesResponse matched to type: CMsgGCToClientManageFavoritesResponse
CMsgClientToGCJoinPartyFromBeacon
Request: k_EMsgClientToGCJoinPartyFromBeacon matched to type: CMsgClientToGCJoinPartyFromBeacon
Request: k_EMsgClientToGCJoinPartyFromBeacon matched to response: k_EMsgGCToClientJoinPartyFromBeaconResponse
CMsgToClientJoinPartyFromBeaconResponse
CMsgGCToClientJoinPartyFromBeaconResponse
Request: k_EMsgGCToClientJoinPartyFromBeaconResponse matched to type: CMsgGCToClientJoinPartyFromBeaconResponse
CMsgClientToGCGetFavoritePlayers
Request: k_EMsgClientToGCGetFavoritePlayers matched to type: CMsgClientToGCGetFavoritePlayers
Request: k_EMsgClientToGCGetFavoritePlayers matched to response: k_EMsgGCToClientGetFavoritePlayersResponse
CMsgToClientGetFavoritePlayersResponse
CMsgGCToClientGetFavoritePlayersResponse
Request: k_EMsgGCToClientGetFavoritePlayersResponse matched to type: CMsgGCToClientGetFavoritePlayersResponse
CMsgClientToGCVerifyFavoritePlayers
Request: k_EMsgClientToGCVerifyFavoritePlayers matched to type: CMsgClientToGCVerifyFavoritePlayers
Request: k_EMsgClientToGCVerifyFavoritePlayers matched to response: k_EMsgGCToClientVerifyFavoritePlayersResponse
CMsgToClientVerifyFavoritePlayersResponse
CMsgGCToClientVerifyFavoritePlayersResponse
Request: k_EMsgGCToClientVerifyFavoritePlayersResponse matched to type: CMsgGCToClientVerifyFavoritePlayersResponse
CMsgToClientPartySearchInvites
CMsgGCToClientPartySearchInvites
Request: k_EMsgGCToClientPartySearchInvites matched to type: CMsgGCToClientPartySearchInvites
CMsgToClientRequestMMInfo
CMsgGCToClientRequestMMInfo
Request: k_EMsgGCToClientRequestMMInfo matched to type: CMsgGCToClientRequestMMInfo
CMsgClientToGCMMInfo
Request: k_EMsgClientToGCMMInfo matched to type: CMsgClientToGCMMInfo
CMsgClientToGCPurchaseLabyrinthBlessings
Request: k_EMsgClientToGCPurchaseLabyrinthBlessings matched to type: CMsgClientToGCPurchaseLabyrinthBlessings
Request: k_EMsgClientToGCPurchaseLabyrinthBlessings matched to response: k_EMsgClientToGCPurchaseLabyrinthBlessingsResponse
CMsgClientToGCPurchaseLabyrinthBlessingsResponse
Request: k_EMsgClientToGCPurchaseLabyrinthBlessingsResponse matched to type: CMsgClientToGCPurchaseLabyrinthBlessingsResponse
CMsgClientToGCPurchaseFilteredPlayerSlot
Request: k_EMsgClientToGCPurchaseFilteredPlayerSlot matched to type: CMsgClientToGCPurchaseFilteredPlayerSlot
Request: k_EMsgClientToGCPurchaseFilteredPlayerSlot matched to response: k_EMsgGCToClientPurchaseFilteredPlayerSlotResponse
CMsgToClientPurchaseFilteredPlayerSlotResponse
CMsgGCToClientPurchaseFilteredPlayerSlotResponse
Request: k_EMsgGCToClientPurchaseFilteredPlayerSlotResponse matched to type: CMsgGCToClientPurchaseFilteredPlayerSlotResponse
CMsgClientToGCUpdateFilteredPlayerNote
Request: k_EMsgClientToGCUpdateFilteredPlayerNote matched to type: CMsgClientToGCUpdateFilteredPlayerNote
Request: k_EMsgClientToGCUpdateFilteredPlayerNote matched to response: k_EMsgGCToClientUpdateFilteredPlayerNoteResponse
CMsgToClientUpdateFilteredPlayerNoteResponse
CMsgGCToClientUpdateFilteredPlayerNoteResponse
Request: k_EMsgGCToClientUpdateFilteredPlayerNoteResponse matched to type: CMsgGCToClientUpdateFilteredPlayerNoteResponse
CMsgClientToGCClaimSwag
Request: k_EMsgClientToGCClaimSwag matched to type: CMsgClientToGCClaimSwag
Request: k_EMsgClientToGCClaimSwag matched to response: k_EMsgGCToClientClaimSwagResponse
CMsgClientToGCPlayerStatsRequest
Request: k_EMsgClientToGCPlayerStatsRequest matched to type: CMsgClientToGCPlayerStatsRequest
Request: k_EMsgClientToGCPlayerStatsRequest matched to response: k_EMsgGCToClientPlayerStatsResponse
CMsgToClientPlayerStatsResponse
CMsgGCToClientPlayerStatsResponse
Request: k_EMsgGCToClientPlayerStatsResponse matched to type: CMsgGCToClientPlayerStatsResponse
CMsgClientToGCFindTopSourceTVGames
Request: k_EMsgClientToGCFindTopSourceTVGames matched to type: CMsgClientToGCFindTopSourceTVGames
Request: k_EMsgClientToGCFindTopSourceTVGames matched to response: k_EMsgGCToClientFindTopSourceTVGamesResponse
CMsgToClientFindTopSourceTVGamesResponse
CMsgGCToClientFindTopSourceTVGamesResponse
Request: k_EMsgGCToClientFindTopSourceTVGamesResponse matched to type: CMsgGCToClientFindTopSourceTVGamesResponse
CMsgClientToGCSocialFeedPostCommentRequest
Request: k_EMsgClientToGCSocialFeedPostCommentRequest matched to type: CMsgClientToGCSocialFeedPostCommentRequest
Request: k_EMsgClientToGCSocialFeedPostCommentRequest matched to response: k_EMsgGCToClientSocialFeedPostCommentResponse
CMsgToClientSocialFeedPostCommentResponse
CMsgGCToClientSocialFeedPostCommentResponse
Request: k_EMsgGCToClientSocialFeedPostCommentResponse matched to type: CMsgGCToClientSocialFeedPostCommentResponse
CMsgClientToGCCustomGamesFriendsPlayedRequest
Request: k_EMsgClientToGCCustomGamesFriendsPlayedRequest matched to type: CMsgClientToGCCustomGamesFriendsPlayedRequest
Request: k_EMsgClientToGCCustomGamesFriendsPlayedRequest matched to response: k_EMsgGCToClientCustomGamesFriendsPlayedResponse
CMsgToClientCustomGamesFriendsPlayedResponse
CMsgGCToClientCustomGamesFriendsPlayedResponse
Request: k_EMsgGCToClientCustomGamesFriendsPlayedResponse matched to type: CMsgGCToClientCustomGamesFriendsPlayedResponse
CMsgClientToGCFriendsPlayedCustomGameRequest
Request: k_EMsgClientToGCFriendsPlayedCustomGameRequest matched to type: CMsgClientToGCFriendsPlayedCustomGameRequest
Request: k_EMsgClientToGCFriendsPlayedCustomGameRequest matched to response: k_EMsgGCToClientFriendsPlayedCustomGameResponse
CMsgToClientFriendsPlayedCustomGameResponse
CMsgGCToClientFriendsPlayedCustomGameResponse
Request: k_EMsgGCToClientFriendsPlayedCustomGameResponse matched to type: CMsgGCToClientFriendsPlayedCustomGameResponse
CMsgTopCustomGamesList
CMsgGCTopCustomGamesList
Request: k_EMsgGCTopCustomGamesList matched to type: CMsgGCTopCustomGamesList
CMsgClientToGCTopLeagueMatchesRequest
Request: k_EMsgClientToGCTopLeagueMatchesRequest matched to type: CMsgClientToGCTopLeagueMatchesRequest
Request: k_EMsgClientToGCTopLeagueMatchesRequest matched to response: k_EMsgGCToClientTopLeagueMatchesResponse
CMsgToClientTopLeagueMatchesResponse
CMsgGCToClientTopLeagueMatchesResponse
Request: k_EMsgGCToClientTopLeagueMatchesResponse matched to type: CMsgGCToClientTopLeagueMatchesResponse
CMsgClientToGCTopFriendMatchesRequest
Request: k_EMsgClientToGCTopFriendMatchesRequest matched to type: CMsgClientToGCTopFriendMatchesRequest
Request: k_EMsgClientToGCTopFriendMatchesRequest matched to response: k_EMsgGCToClientTopFriendMatchesResponse
CMsgToClientTopFriendMatchesResponse
CMsgGCToClientTopFriendMatchesResponse
Request: k_EMsgGCToClientTopFriendMatchesResponse matched to type: CMsgGCToClientTopFriendMatchesResponse
CMsgPracticeLobbyKickFromTeam
Request: k_EMsgGCPracticeLobbyKickFromTeam matched to type: CMsgPracticeLobbyKickFromTeam
CMsgDOTAChatGetMemberCount
Request: k_EMsgDOTAChatGetMemberCount matched to type: CMsgDOTAChatGetMemberCount
Request: k_EMsgDOTAChatGetMemberCount matched to response: k_EMsgDOTAChatGetMemberCountResponse
CMsgDOTAChatGetMemberCountResponse
Request: k_EMsgDOTAChatGetMemberCountResponse matched to type: CMsgDOTAChatGetMemberCountResponse
CMsgClientToGCSocialFeedPostMessageRequest
Request: k_EMsgClientToGCSocialFeedPostMessageRequest matched to type: CMsgClientToGCSocialFeedPostMessageRequest
Request: k_EMsgClientToGCSocialFeedPostMessageRequest matched to response: k_EMsgGCToClientSocialFeedPostMessageResponse
CMsgToClientSocialFeedPostMessageResponse
CMsgGCToClientSocialFeedPostMessageResponse
Request: k_EMsgGCToClientSocialFeedPostMessageResponse matched to type: CMsgGCToClientSocialFeedPostMessageResponse
CMsgCustomGameListenServerStartedLoading
CMsgGCCustomGameListenServerStartedLoading
CMsgCustomGameListenServerStartedLoading
CMsgGCCustomGameListenServerStartedLoading
CMsgCustomGameListenServerStartedLoading
CMsgCustomGameListenServerStartedLoading
CMsgDOTACustomGameListenServerStartedLoading
Request: k_EMsgCustomGameListenServerStartedLoading matched to type: CMsgDOTACustomGameListenServerStartedLoading
CMsgCustomGameClientFinishedLoading
CMsgGCCustomGameClientFinishedLoading
CMsgCustomGameClientFinishedLoading
CMsgGCCustomGameClientFinishedLoading
CMsgCustomGameClientFinishedLoading
CMsgCustomGameClientFinishedLoading
CMsgDOTACustomGameClientFinishedLoading
Request: k_EMsgCustomGameClientFinishedLoading matched to type: CMsgDOTACustomGameClientFinishedLoading
CMsgPracticeLobbyCloseBroadcastChannel
Request: k_EMsgGCPracticeLobbyCloseBroadcastChannel matched to type: CMsgPracticeLobbyCloseBroadcastChannel
CMsgClientToGCMatchesMinimalRequest
Request: k_EMsgClientToGCMatchesMinimalRequest matched to type: CMsgClientToGCMatchesMinimalRequest
Request: k_EMsgClientToGCMatchesMinimalRequest matched to response: k_EMsgClientToGCMatchesMinimalResponse
CMsgClientToGCMatchesMinimalResponse
Request: k_EMsgClientToGCMatchesMinimalResponse matched to type: CMsgClientToGCMatchesMinimalResponse
CMsgClientToGCGetProfileTickets
Request: k_EMsgClientToGCGetProfileTickets matched to type: CMsgClientToGCGetProfileTickets
Request: k_EMsgClientToGCGetProfileTickets matched to response: k_EMsgClientToGCGetProfileTicketsResponse
CMsgToClientMatchGroupsVersion
CMsgGCToClientMatchGroupsVersion
Request: k_EMsgGCToClientMatchGroupsVersion matched to type: CMsgGCToClientMatchGroupsVersion
CMsgClientToGCH264Unsupported
Request: k_EMsgClientToGCH264Unsupported matched to type: CMsgClientToGCH264Unsupported
CMsgClientToGCGetQuestProgress
Request: k_EMsgClientToGCGetQuestProgress matched to type: CMsgClientToGCGetQuestProgress
Request: k_EMsgClientToGCGetQuestProgress matched to response: k_EMsgClientToGCGetQuestProgressResponse
CMsgClientToGCGetQuestProgressResponse
Request: k_EMsgClientToGCGetQuestProgressResponse matched to type: CMsgClientToGCGetQuestProgressResponse
CMsgToClientMatchSignedOut
CMsgGCToClientMatchSignedOut
Request: k_EMsgGCToClientMatchSignedOut matched to type: CMsgGCToClientMatchSignedOut
CMsgGetHeroStatsHistory
CMsgGCGetHeroStatsHistory
Request: k_EMsgGCGetHeroStatsHistory matched to type: CMsgGCGetHeroStatsHistory
Request: k_EMsgGCGetHeroStatsHistory matched to response: k_EMsgGCGetHeroStatsHistoryResponse
CMsgGetHeroStatsHistoryResponse
CMsgGCGetHeroStatsHistoryResponse
Request: k_EMsgGCGetHeroStatsHistoryResponse matched to type: CMsgGCGetHeroStatsHistoryResponse
CMsgClientToGCPrivateChatInvite
Request: k_EMsgClientToGCPrivateChatInvite matched to type: CMsgClientToGCPrivateChatInvite
CMsgClientToGCPrivateChatKick
Request: k_EMsgClientToGCPrivateChatKick matched to type: CMsgClientToGCPrivateChatKick
CMsgClientToGCPrivateChatPromote
Request: k_EMsgClientToGCPrivateChatPromote matched to type: CMsgClientToGCPrivateChatPromote
CMsgClientToGCPrivateChatDemote
Request: k_EMsgClientToGCPrivateChatDemote matched to type: CMsgClientToGCPrivateChatDemote
Request: k_EMsgClientToGCLatestConductScorecardRequest matched to response: k_EMsgClientToGCLatestConductScorecard
CMsgClientToGCWageringRequest
Request: k_EMsgClientToGCWageringRequest matched to type: CMsgClientToGCWageringRequest
Request: k_EMsgClientToGCWageringRequest matched to response: k_EMsgGCToClientWageringResponse
CMsgToClientWageringResponse
CMsgGCToClientWageringResponse
Request: k_EMsgGCToClientWageringResponse matched to type: CMsgGCToClientWageringResponse
Request: k_EMsgClientToGCEventGoalsRequest matched to response: k_EMsgClientToGCEventGoalsResponse
CMsgClientToGCHasPlayerVotedForMVP
Request: k_EMsgClientToGCHasPlayerVotedForMVP matched to type: CMsgClientToGCHasPlayerVotedForMVP
Request: k_EMsgClientToGCHasPlayerVotedForMVP matched to response: k_EMsgClientToGCHasPlayerVotedForMVPResponse
CMsgClientToGCHasPlayerVotedForMVPResponse
Request: k_EMsgClientToGCHasPlayerVotedForMVPResponse matched to type: CMsgClientToGCHasPlayerVotedForMVPResponse
CMsgClientToGCVoteForMVP
Request: k_EMsgClientToGCVoteForMVP matched to type: CMsgClientToGCVoteForMVP
Request: k_EMsgClientToGCVoteForMVP matched to response: k_EMsgClientToGCVoteForMVPResponse
CMsgClientToGCVoteForMVPResponse
Request: k_EMsgClientToGCVoteForMVPResponse matched to type: CMsgClientToGCVoteForMVPResponse
CMsgClientToGCTeammateStatsRequest
Request: k_EMsgClientToGCTeammateStatsRequest matched to type: CMsgClientToGCTeammateStatsRequest
Request: k_EMsgClientToGCTeammateStatsRequest matched to response: k_EMsgClientToGCTeammateStatsResponse
CMsgClientToGCTeammateStatsResponse
Request: k_EMsgClientToGCTeammateStatsResponse matched to type: CMsgClientToGCTeammateStatsResponse
CMsgClientToGCGetGiftPermissions
Request: k_EMsgClientToGCGetGiftPermissions matched to type: CMsgClientToGCGetGiftPermissions
Request: k_EMsgClientToGCGetGiftPermissions matched to response: k_EMsgClientToGCGetGiftPermissionsResponse
CMsgClientToGCGetGiftPermissionsResponse
Request: k_EMsgClientToGCGetGiftPermissionsResponse matched to type: CMsgClientToGCGetGiftPermissionsResponse
CMsgClientToGCVoteForArcana
Request: k_EMsgClientToGCVoteForArcana matched to type: CMsgClientToGCVoteForArcana
Request: k_EMsgClientToGCVoteForArcana matched to response: k_EMsgClientToGCVoteForArcanaResponse
CMsgClientToGCVoteForArcanaResponse
Request: k_EMsgClientToGCVoteForArcanaResponse matched to type: CMsgClientToGCVoteForArcanaResponse
CMsgClientToGCRequestArcanaVotesRemaining
Request: k_EMsgClientToGCRequestArcanaVotesRemaining matched to type: CMsgClientToGCRequestArcanaVotesRemaining
Request: k_EMsgClientToGCRequestArcanaVotesRemaining matched to response: k_EMsgClientToGCRequestArcanaVotesRemainingResponse
CMsgClientToGCRequestArcanaVotesRemainingResponse
Request: k_EMsgClientToGCRequestArcanaVotesRemainingResponse matched to type: CMsgClientToGCRequestArcanaVotesRemainingResponse
Request: k_EMsgClientToGCMyTeamInfoRequest matched to response: k_EMsgGCToClientTeamInfo
CMsgClientToGCPublishUserStat
Request: k_EMsgClientToGCPublishUserStat matched to type: CMsgClientToGCPublishUserStat
CMsgSubmitLobbyMVPVote
CMsgGCSubmitLobbyMVPVote
CMsgSubmitLobbyMVPVote
CMsgGCSubmitLobbyMVPVote
CMsgSubmitLobbyMVPVote
CMsgSubmitLobbyMVPVote
CMsgDOTASubmitLobbyMVPVote
Request: k_EMsgGCSubmitLobbyMVPVote matched to type: CMsgDOTASubmitLobbyMVPVote
Request: k_EMsgGCSubmitLobbyMVPVote matched to response: k_EMsgGCSubmitLobbyMVPVoteResponse
CMsgSubmitLobbyMVPVoteResponse
CMsgGCSubmitLobbyMVPVoteResponse
CMsgSubmitLobbyMVPVoteResult
CMsgGCSubmitLobbyMVPVoteResult
CMsgSubmitLobbyMVPVoteResponse
CMsgSubmitLobbyMVPVoteResponse
CMsgDOTASubmitLobbyMVPVoteResponse
Request: k_EMsgGCSubmitLobbyMVPVoteResponse matched to type: CMsgDOTASubmitLobbyMVPVoteResponse
CMsgToClientQuestProgressUpdated
CMsgGCToClientQuestProgressUpdated
Request: k_EMsgGCToClientQuestProgressUpdated matched to type: CMsgGCToClientQuestProgressUpdated
CMsgToClientWageringUpdate
CMsgGCToClientWageringUpdate
Request: k_EMsgGCToClientWageringUpdate matched to type: CMsgGCToClientWageringUpdate
CMsgToClientArcanaVotesUpdate
CMsgGCToClientArcanaVotesUpdate
Request: k_EMsgGCToClientArcanaVotesUpdate matched to type: CMsgGCToClientArcanaVotesUpdate
CMsgClientToGCSetSpectatorLobbyDetails
CMsgGCClientToGCSetSpectatorLobbyDetails
CMsgClientToGCSetSpectatorLobbyDetails
CMsgGCClientToGCSetSpectatorLobbyDetails
CMsgClientToGCSetSpectatorLobbyDetails
CMsgSetSpectatorLobbyDetails
Request: k_EMsgClientToGCSetSpectatorLobbyDetails matched to type: CMsgSetSpectatorLobbyDetails
CMsgClientToGCCreateSpectatorLobby
CMsgGCClientToGCCreateSpectatorLobby
CMsgClientToGCCreateSpectatorLobby
CMsgGCClientToGCCreateSpectatorLobby
CMsgClientToGCCreateSpectatorLobby
CMsgCreateSpectatorLobby
Request: k_EMsgClientToGCCreateSpectatorLobby matched to type: CMsgCreateSpectatorLobby
CMsgClientToGCSpectatorLobbyList
CMsgGCClientToGCSpectatorLobbyList
CMsgClientToGCSpectatorLobbyList
CMsgGCClientToGCSpectatorLobbyList
CMsgClientToGCSpectatorLobbyList
CMsgSpectatorLobbyList
Request: k_EMsgClientToGCSpectatorLobbyList matched to type: CMsgSpectatorLobbyList
Request: k_EMsgClientToGCSpectatorLobbyList matched to response: k_EMsgClientToGCSpectatorLobbyListResponse
CMsgClientToGCSpectatorLobbyListResponse
CMsgGCClientToGCSpectatorLobbyListResponse
CMsgClientToGCSpectatorLobbyListResult
CMsgGCClientToGCSpectatorLobbyListResult
CMsgClientToGCSpectatorLobbyListResponse
CMsgSpectatorLobbyListResponse
Request: k_EMsgClientToGCSpectatorLobbyListResponse matched to type: CMsgSpectatorLobbyListResponse
CMsgSpectatorLobbyGameDetails
Request: k_EMsgSpectatorLobbyGameDetails matched to type: CMsgSpectatorLobbyGameDetails
CMsgClientToGCOpenPlayerCardPack
Request: k_EMsgClientToGCOpenPlayerCardPack matched to type: CMsgClientToGCOpenPlayerCardPack
Request: k_EMsgClientToGCOpenPlayerCardPack matched to response: k_EMsgClientToGCOpenPlayerCardPackResponse
CMsgClientToGCOpenPlayerCardPackResponse
Request: k_EMsgClientToGCOpenPlayerCardPackResponse matched to type: CMsgClientToGCOpenPlayerCardPackResponse
CMsgClientToGCSelectCompendiumInGamePrediction
Request: k_EMsgClientToGCSelectCompendiumInGamePrediction matched to type: CMsgClientToGCSelectCompendiumInGamePrediction
Request: k_EMsgClientToGCSelectCompendiumInGamePrediction matched to response: k_EMsgClientToGCSelectCompendiumInGamePredictionResponse
CMsgClientToGCSelectCompendiumInGamePredictionResponse
Request: k_EMsgClientToGCSelectCompendiumInGamePredictionResponse matched to type: CMsgClientToGCSelectCompendiumInGamePredictionResponse
Request: k_EMsgClientToGCWeekendTourneyGetPlayerStats matched to response: k_EMsgClientToGCWeekendTourneyGetPlayerStatsResponse
CMsgClientToGCRecyclePlayerCard
Request: k_EMsgClientToGCRecyclePlayerCard matched to type: CMsgClientToGCRecyclePlayerCard
Request: k_EMsgClientToGCRecyclePlayerCard matched to response: k_EMsgClientToGCRecyclePlayerCardResponse
CMsgClientToGCRecyclePlayerCardResponse
Request: k_EMsgClientToGCRecyclePlayerCardResponse matched to type: CMsgClientToGCRecyclePlayerCardResponse
CMsgClientToGCCreatePlayerCardPack
Request: k_EMsgClientToGCCreatePlayerCardPack matched to type: CMsgClientToGCCreatePlayerCardPack
Request: k_EMsgClientToGCCreatePlayerCardPack matched to response: k_EMsgClientToGCCreatePlayerCardPackResponse
CMsgClientToGCCreatePlayerCardPackResponse
Request: k_EMsgClientToGCCreatePlayerCardPackResponse matched to type: CMsgClientToGCCreatePlayerCardPackResponse
CMsgClientToGCGetPlayerCardRosterRequest
Request: k_EMsgClientToGCGetPlayerCardRosterRequest matched to type: CMsgClientToGCGetPlayerCardRosterRequest
Request: k_EMsgClientToGCGetPlayerCardRosterRequest matched to response: k_EMsgClientToGCGetPlayerCardRosterResponse
CMsgClientToGCGetPlayerCardRosterResponse
Request: k_EMsgClientToGCGetPlayerCardRosterResponse matched to type: CMsgClientToGCGetPlayerCardRosterResponse
CMsgClientToGCSetPlayerCardRosterRequest
Request: k_EMsgClientToGCSetPlayerCardRosterRequest matched to type: CMsgClientToGCSetPlayerCardRosterRequest
Request: k_EMsgClientToGCSetPlayerCardRosterRequest matched to response: k_EMsgClientToGCSetPlayerCardRosterResponse
CMsgClientToGCSetPlayerCardRosterResponse
Request: k_EMsgClientToGCSetPlayerCardRosterResponse matched to type: CMsgClientToGCSetPlayerCardRosterResponse
CMsgGetPlayerCardItemInfo
CMsgGCGetPlayerCardItemInfo
Request: k_EMsgGCGetPlayerCardItemInfo matched to type: CMsgGCGetPlayerCardItemInfo
Request: k_EMsgGCGetPlayerCardItemInfo matched to response: k_EMsgGCGetPlayerCardItemInfoResponse
CMsgGetPlayerCardItemInfoResponse
CMsgGCGetPlayerCardItemInfoResponse
Request: k_EMsgGCGetPlayerCardItemInfoResponse matched to type: CMsgGCGetPlayerCardItemInfoResponse
CMsgClientToGCRequestSteamDatagramTicket
Request: k_EMsgClientToGCRequestSteamDatagramTicket matched to type: CMsgClientToGCRequestSteamDatagramTicket
Request: k_EMsgClientToGCRequestSteamDatagramTicket matched to response: k_EMsgClientToGCRequestSteamDatagramTicketResponse
CMsgClientToGCRequestSteamDatagramTicketResponse
Request: k_EMsgClientToGCRequestSteamDatagramTicketResponse matched to type: CMsgClientToGCRequestSteamDatagramTicketResponse
CMsgToClientBattlePassRollupRequest
CMsgGCToClientBattlePassRollupRequest
Request: k_EMsgGCToClientBattlePassRollupRequest matched to type: CMsgGCToClientBattlePassRollupRequest
CMsgClientToGCTransferSeasonalMMRRequest
Request: k_EMsgClientToGCTransferSeasonalMMRRequest matched to type: CMsgClientToGCTransferSeasonalMMRRequest
Request: k_EMsgClientToGCTransferSeasonalMMRRequest matched to response: k_EMsgClientToGCTransferSeasonalMMRResponse
CMsgClientToGCTransferSeasonalMMRResponse
Request: k_EMsgClientToGCTransferSeasonalMMRResponse matched to type: CMsgClientToGCTransferSeasonalMMRResponse
CMsgChatReportPublicSpam
CMsgGCChatReportPublicSpam
Request: k_EMsgGCChatReportPublicSpam matched to type: CMsgGCChatReportPublicSpam
CMsgToClientPlaytestStatus
CMsgGCToClientPlaytestStatus
Request: k_EMsgGCToClientPlaytestStatus matched to type: CMsgGCToClientPlaytestStatus
CMsgClientToGCJoinPlaytest
Request: k_EMsgClientToGCJoinPlaytest matched to type: CMsgClientToGCJoinPlaytest
Request: k_EMsgClientToGCJoinPlaytest matched to response: k_EMsgClientToGCJoinPlaytestResponse
CMsgClientToGCJoinPlaytestResponse
Request: k_EMsgClientToGCJoinPlaytestResponse matched to type: CMsgClientToGCJoinPlaytestResponse
CMsgLobbyPlaytestDetails
Request: k_EMsgLobbyPlaytestDetails matched to type: CMsgLobbyPlaytestDetails
CMsgDOTASetFavoriteTeam
Request: k_EMsgDOTASetFavoriteTeam matched to type: CMsgDOTASetFavoriteTeam
CMsgToClientBattlePassRollupListRequest
CMsgGCToClientBattlePassRollupListRequest
Request: k_EMsgGCToClientBattlePassRollupListRequest matched to type: CMsgGCToClientBattlePassRollupListRequest
CMsgDOTAClaimEventAction
Request: k_EMsgDOTAClaimEventAction matched to type: CMsgDOTAClaimEventAction
Request: k_EMsgDOTAClaimEventAction matched to response: k_EMsgDOTAClaimEventActionResponse