forked from paralin/go-dota2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapshot-apigen.txt
2125 lines (2125 loc) · 108 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
This script should be run in GOPATH due to go-mod compatibility issues.
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
CMsgRequestMatches
CMsgGCRequestMatches
CMsgRequestMatches
CMsgGCRequestMatches
CMsgRequestMatches
CMsgRequestMatches
CMsgDOTARequestMatches
Request: k_EMsgGCRequestMatches matched to type: CMsgDOTARequestMatches
Request: k_EMsgGCRequestMatches matched to response: k_EMsgGCRequestMatchesResponse
CMsgRequestMatchesResponse
CMsgGCRequestMatchesResponse
CMsgRequestMatchesResult
CMsgGCRequestMatchesResult
CMsgRequestMatchesResponse
CMsgRequestMatchesResponse
CMsgDOTARequestMatchesResponse
Request: k_EMsgGCRequestMatchesResponse matched to type: CMsgDOTARequestMatchesResponse
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
CMsgReportCountsRequest
CMsgGCReportCountsRequest
CMsgReportCountsRequest
CMsgGCReportCountsRequest
CMsgReportCountsRequest
CMsgReportCountsRequest
CMsgDOTAReportCountsRequest
Request: k_EMsgGCReportCountsRequest matched to type: CMsgDOTAReportCountsRequest
Request: k_EMsgGCReportCountsRequest matched to response: k_EMsgGCReportCountsResponse
CMsgReportCountsResponse
CMsgGCReportCountsResponse
CMsgReportCountsResult
CMsgGCReportCountsResult
CMsgReportCountsResponse
CMsgReportCountsResponse
CMsgDOTAReportCountsResponse
Request: k_EMsgGCReportCountsResponse matched to type: CMsgDOTAReportCountsResponse
CMsgRequestSaveGames
CMsgGCRequestSaveGames
CMsgRequestSaveGames
CMsgGCRequestSaveGames
CMsgRequestSaveGames
CMsgRequestSaveGames
CMsgDOTARequestSaveGames
Request: k_EMsgGCRequestSaveGames matched to type: CMsgDOTARequestSaveGames
Request: k_EMsgGCRequestSaveGames matched to response: k_EMsgGCRequestSaveGamesResponse
CMsgRequestSaveGamesResponse
CMsgGCRequestSaveGamesResponse
CMsgRequestSaveGamesResult
CMsgGCRequestSaveGamesResult
CMsgRequestSaveGamesResponse
CMsgRequestSaveGamesResponse
CMsgDOTARequestSaveGamesResponse
Request: k_EMsgGCRequestSaveGamesResponse matched to type: CMsgDOTARequestSaveGamesResponse
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
CMsgDOTAClearNotifySuccessfulReport
Request: k_EMsgGCDOTAClearNotifySuccessfulReport matched to type: CMsgDOTAClearNotifySuccessfulReport
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
CMsgCastMatchVote
Request: k_EMsgCastMatchVote matched to type: CMsgCastMatchVote
CMsgRetrieveMatchVote
Request: k_EMsgRetrieveMatchVote matched to type: CMsgRetrieveMatchVote
Request: k_EMsgRetrieveMatchVote matched to response: k_EMsgRetrieveMatchVoteResponse
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
CMsgProTeamListRequest
CMsgGCProTeamListRequest
CMsgProTeamListRequest
CMsgGCProTeamListRequest
CMsgProTeamListRequest
CMsgProTeamListRequest
CMsgDOTAProTeamListRequest
Request: k_EMsgGCProTeamListRequest matched to type: CMsgDOTAProTeamListRequest
Request: k_EMsgGCProTeamListRequest matched to response: k_EMsgGCProTeamListResponse
CMsgProTeamListResponse
CMsgGCProTeamListResponse
CMsgProTeamListResult
CMsgGCProTeamListResult
CMsgProTeamListResponse
CMsgProTeamListResponse
CMsgDOTAProTeamListResponse
Request: k_EMsgGCProTeamListResponse matched to type: CMsgDOTAProTeamListResponse
CMsgReadyUpStatus
Request: k_EMsgGCReadyUpStatus matched to type: CMsgReadyUpStatus
CMsgHallOfFame
CMsgGCHallOfFame
CMsgHallOfFame
CMsgGCHallOfFame
CMsgHallOfFame
CMsgHallOfFame
CMsgDOTAHallOfFame
Request: k_EMsgGCHallOfFame matched to type: CMsgDOTAHallOfFame
CMsgHallOfFameRequest
CMsgGCHallOfFameRequest
CMsgHallOfFameRequest
CMsgGCHallOfFameRequest
CMsgHallOfFameRequest
CMsgHallOfFameRequest
CMsgDOTAHallOfFameRequest
Request: k_EMsgGCHallOfFameRequest matched to type: CMsgDOTAHallOfFameRequest
Request: k_EMsgGCHallOfFameRequest matched to response: k_EMsgGCHallOfFameResponse
CMsgHallOfFameResponse
CMsgGCHallOfFameResponse
CMsgHallOfFameResult
CMsgGCHallOfFameResult
CMsgHallOfFameResponse
CMsgHallOfFameResponse
CMsgDOTAHallOfFameResponse
Request: k_EMsgGCHallOfFameResponse matched to type: CMsgDOTAHallOfFameResponse
CMsgHalloweenHighScoreRequest
CMsgGCHalloweenHighScoreRequest
CMsgHalloweenHighScoreRequest
CMsgGCHalloweenHighScoreRequest
CMsgHalloweenHighScoreRequest
CMsgHalloweenHighScoreRequest
CMsgDOTAHalloweenHighScoreRequest
Request: k_EMsgGCHalloweenHighScoreRequest matched to type: CMsgDOTAHalloweenHighScoreRequest
Request: k_EMsgGCHalloweenHighScoreRequest matched to response: k_EMsgGCHalloweenHighScoreResponse
CMsgHalloweenHighScoreResponse
CMsgGCHalloweenHighScoreResponse
CMsgHalloweenHighScoreResult
CMsgGCHalloweenHighScoreResult
CMsgHalloweenHighScoreResponse
CMsgHalloweenHighScoreResponse
CMsgDOTAHalloweenHighScoreResponse
Request: k_EMsgGCHalloweenHighScoreResponse matched to type: CMsgDOTAHalloweenHighScoreResponse
CMsgStorePromoPagesRequest
CMsgGCStorePromoPagesRequest
CMsgStorePromoPagesRequest
CMsgGCStorePromoPagesRequest
CMsgStorePromoPagesRequest
CMsgStorePromoPagesRequest
CMsgDOTAStorePromoPagesRequest
Request: k_EMsgGCStorePromoPagesRequest matched to type: CMsgDOTAStorePromoPagesRequest
Request: k_EMsgGCStorePromoPagesRequest matched to response: k_EMsgGCStorePromoPagesResponse
CMsgStorePromoPagesResponse
CMsgGCStorePromoPagesResponse
CMsgStorePromoPagesResult
CMsgGCStorePromoPagesResult
CMsgStorePromoPagesResponse
CMsgStorePromoPagesResponse
CMsgDOTAStorePromoPagesResponse
Request: k_EMsgGCStorePromoPagesResponse matched to type: CMsgDOTAStorePromoPagesResponse
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
CMsgSetMapLocationState
Request: k_EMsgGCSetMapLocationState matched to type: CMsgSetMapLocationState
Request: k_EMsgGCSetMapLocationState matched to response: k_EMsgGCSetMapLocationStateResponse
CMsgSetMapLocationStateResponse
Request: k_EMsgGCSetMapLocationStateResponse matched to type: CMsgSetMapLocationStateResponse
CMsgResetMapLocations
Request: k_EMsgGCResetMapLocations matched to type: CMsgResetMapLocations
CMsgRefreshPartnerAccountLink
Request: k_EMsgRefreshPartnerAccountLink matched to type: CMsgRefreshPartnerAccountLink
CMsgClientsRejoinChatChannels
Request: k_EMsgClientsRejoinChatChannels matched to type: CMsgClientsRejoinChatChannels
CMsgRequestLeaguePrizePool
Request: k_EMsgGCRequestLeaguePrizePool matched to type: CMsgRequestLeaguePrizePool
Request: k_EMsgGCRequestLeaguePrizePool matched to response: k_EMsgGCRequestLeaguePrizePoolResponse
CMsgRequestLeaguePrizePoolResponse
Request: k_EMsgGCRequestLeaguePrizePoolResponse matched to type: CMsgRequestLeaguePrizePoolResponse
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
CMsgLastHitChallengeHighScorePost
CMsgGCLastHitChallengeHighScorePost
CMsgLastHitChallengeHighScorePost
CMsgGCLastHitChallengeHighScorePost
CMsgLastHitChallengeHighScorePost
CMsgLastHitChallengeHighScorePost
CMsgDOTALastHitChallengeHighScorePost
Request: k_EMsgGCLastHitChallengeHighScorePost matched to type: CMsgDOTALastHitChallengeHighScorePost
CMsgLastHitChallengeHighScoreRequest
CMsgGCLastHitChallengeHighScoreRequest
CMsgLastHitChallengeHighScoreRequest
CMsgGCLastHitChallengeHighScoreRequest
CMsgLastHitChallengeHighScoreRequest
CMsgLastHitChallengeHighScoreRequest
CMsgDOTALastHitChallengeHighScoreRequest
Request: k_EMsgGCLastHitChallengeHighScoreRequest matched to type: CMsgDOTALastHitChallengeHighScoreRequest
Request: k_EMsgGCLastHitChallengeHighScoreRequest matched to response: k_EMsgGCLastHitChallengeHighScoreResponse
CMsgLastHitChallengeHighScoreResponse
CMsgGCLastHitChallengeHighScoreResponse
CMsgLastHitChallengeHighScoreResult
CMsgGCLastHitChallengeHighScoreResult
CMsgLastHitChallengeHighScoreResponse
CMsgLastHitChallengeHighScoreResponse
CMsgDOTALastHitChallengeHighScoreResponse
Request: k_EMsgGCLastHitChallengeHighScoreResponse matched to type: CMsgDOTALastHitChallengeHighScoreResponse
CMsgFantasyLeagueInfoRequest
CMsgGCFantasyLeagueInfoRequest
CMsgFantasyLeagueInfoRequest
CMsgGCFantasyLeagueInfoRequest
CMsgFantasyLeagueInfoRequest
CMsgFantasyLeagueInfoRequest
CMsgDOTAFantasyLeagueInfoRequest
Request: k_EMsgGCFantasyLeagueInfoRequest matched to type: CMsgDOTAFantasyLeagueInfoRequest
Request: k_EMsgGCFantasyLeagueInfoRequest matched to response: k_EMsgGCFantasyLeagueInfoResponse
CMsgFantasyLeagueInfoResponse
CMsgGCFantasyLeagueInfoResponse
CMsgFantasyLeagueInfoResult
CMsgGCFantasyLeagueInfoResult
CMsgFantasyLeagueInfoResponse
CMsgFantasyLeagueInfoResponse
CMsgDOTAFantasyLeagueInfoResponse
Request: k_EMsgGCFantasyLeagueInfoResponse matched to type: CMsgDOTAFantasyLeagueInfoResponse
CMsgFantasyLeagueInfo
CMsgGCFantasyLeagueInfo
CMsgFantasyLeagueInfo
CMsgGCFantasyLeagueInfo
CMsgFantasyLeagueInfo
CMsgFantasyLeagueInfo
CMsgDOTAFantasyLeagueInfo
Request: k_EMsgGCFantasyLeagueInfo matched to type: CMsgDOTAFantasyLeagueInfo
CMsgEditFantasyTeamRequest
CMsgGCEditFantasyTeamRequest
CMsgEditFantasyTeamRequest
CMsgGCEditFantasyTeamRequest
CMsgEditFantasyTeamRequest
CMsgEditFantasyTeamRequest
CMsgDOTAEditFantasyTeamRequest
Request: k_EMsgGCEditFantasyTeamRequest matched to type: CMsgDOTAEditFantasyTeamRequest
Request: k_EMsgGCEditFantasyTeamRequest matched to response: k_EMsgGCEditFantasyTeamResponse
CMsgEditFantasyTeamResponse
CMsgGCEditFantasyTeamResponse
CMsgEditFantasyTeamResult
CMsgGCEditFantasyTeamResult
CMsgEditFantasyTeamResponse
CMsgEditFantasyTeamResponse
CMsgDOTAEditFantasyTeamResponse
Request: k_EMsgGCEditFantasyTeamResponse matched to type: CMsgDOTAEditFantasyTeamResponse
CMsgFantasyTeamInfoRequestByFantasyLeagueID
CMsgGCFantasyTeamInfoRequestByFantasyLeagueID
CMsgFantasyTeamInfoRequestByFantasyLeagueID
CMsgGCFantasyTeamInfoRequestByFantasyLeagueID
CMsgFantasyTeamInfoRequestByFantasyLeagueID
CMsgFantasyTeamInfoRequestByFantasyLeagueID
CMsgDOTAFantasyTeamInfoRequestByFantasyLeagueID
Request: k_EMsgGCFantasyTeamInfoRequestByFantasyLeagueID matched to type: CMsgDOTAFantasyTeamInfoRequestByFantasyLeagueID
CMsgFantasyTeamInfoRequestByOwnerAccountID
CMsgGCFantasyTeamInfoRequestByOwnerAccountID
CMsgFantasyTeamInfoRequestByOwnerAccountID
CMsgGCFantasyTeamInfoRequestByOwnerAccountID
CMsgFantasyTeamInfoRequestByOwnerAccountID
CMsgFantasyTeamInfoRequestByOwnerAccountID
CMsgDOTAFantasyTeamInfoRequestByOwnerAccountID
Request: k_EMsgGCFantasyTeamInfoRequestByOwnerAccountID matched to type: CMsgDOTAFantasyTeamInfoRequestByOwnerAccountID
CMsgFantasyTeamInfo
CMsgGCFantasyTeamInfo
CMsgFantasyTeamInfo
CMsgGCFantasyTeamInfo
CMsgFantasyTeamInfo
CMsgFantasyTeamInfo
CMsgDOTAFantasyTeamInfo
Request: k_EMsgGCFantasyTeamInfo matched to type: CMsgDOTAFantasyTeamInfo
CMsgFantasyTeamScoreRequest
CMsgGCFantasyTeamScoreRequest
CMsgFantasyTeamScoreRequest
CMsgGCFantasyTeamScoreRequest
CMsgFantasyTeamScoreRequest
CMsgFantasyTeamScoreRequest
CMsgDOTAFantasyTeamScoreRequest
Request: k_EMsgGCFantasyTeamScoreRequest matched to type: CMsgDOTAFantasyTeamScoreRequest
Request: k_EMsgGCFantasyTeamScoreRequest matched to response: k_EMsgGCFantasyTeamScoreResponse
CMsgFantasyTeamScoreResponse
CMsgGCFantasyTeamScoreResponse
CMsgFantasyTeamScoreResult
CMsgGCFantasyTeamScoreResult
CMsgFantasyTeamScoreResponse
CMsgFantasyTeamScoreResponse
CMsgDOTAFantasyTeamScoreResponse
Request: k_EMsgGCFantasyTeamScoreResponse matched to type: CMsgDOTAFantasyTeamScoreResponse
CMsgFantasyTeamStandingsRequest
CMsgGCFantasyTeamStandingsRequest
CMsgFantasyTeamStandingsRequest
CMsgGCFantasyTeamStandingsRequest
CMsgFantasyTeamStandingsRequest
CMsgFantasyTeamStandingsRequest
CMsgDOTAFantasyTeamStandingsRequest
Request: k_EMsgGCFantasyTeamStandingsRequest matched to type: CMsgDOTAFantasyTeamStandingsRequest
Request: k_EMsgGCFantasyTeamStandingsRequest matched to response: k_EMsgGCFantasyTeamStandingsResponse
CMsgFantasyTeamStandingsResponse
CMsgGCFantasyTeamStandingsResponse
CMsgFantasyTeamStandingsResult
CMsgGCFantasyTeamStandingsResult
CMsgFantasyTeamStandingsResponse
CMsgFantasyTeamStandingsResponse
CMsgDOTAFantasyTeamStandingsResponse
Request: k_EMsgGCFantasyTeamStandingsResponse matched to type: CMsgDOTAFantasyTeamStandingsResponse
CMsgFantasyPlayerScoreRequest
CMsgGCFantasyPlayerScoreRequest
CMsgFantasyPlayerScoreRequest
CMsgGCFantasyPlayerScoreRequest
CMsgFantasyPlayerScoreRequest
CMsgFantasyPlayerScoreRequest
CMsgDOTAFantasyPlayerScoreRequest
Request: k_EMsgGCFantasyPlayerScoreRequest matched to type: CMsgDOTAFantasyPlayerScoreRequest
Request: k_EMsgGCFantasyPlayerScoreRequest matched to response: k_EMsgGCFantasyPlayerScoreResponse
CMsgFantasyPlayerScoreResponse
CMsgGCFantasyPlayerScoreResponse
CMsgFantasyPlayerScoreResult
CMsgGCFantasyPlayerScoreResult
CMsgFantasyPlayerScoreResponse
CMsgFantasyPlayerScoreResponse
CMsgDOTAFantasyPlayerScoreResponse
Request: k_EMsgGCFantasyPlayerScoreResponse matched to type: CMsgDOTAFantasyPlayerScoreResponse
CMsgFantasyPlayerStandingsRequest
CMsgGCFantasyPlayerStandingsRequest
CMsgFantasyPlayerStandingsRequest
CMsgGCFantasyPlayerStandingsRequest
CMsgFantasyPlayerStandingsRequest
CMsgFantasyPlayerStandingsRequest
CMsgDOTAFantasyPlayerStandingsRequest
Request: k_EMsgGCFantasyPlayerStandingsRequest matched to type: CMsgDOTAFantasyPlayerStandingsRequest
Request: k_EMsgGCFantasyPlayerStandingsRequest matched to response: k_EMsgGCFantasyPlayerStandingsResponse
CMsgFantasyPlayerStandingsResponse
CMsgGCFantasyPlayerStandingsResponse
CMsgFantasyPlayerStandingsResult
CMsgGCFantasyPlayerStandingsResult
CMsgFantasyPlayerStandingsResponse
CMsgFantasyPlayerStandingsResponse
CMsgDOTAFantasyPlayerStandingsResponse
Request: k_EMsgGCFantasyPlayerStandingsResponse matched to type: CMsgDOTAFantasyPlayerStandingsResponse
CMsgFlipLobbyTeams
Request: k_EMsgGCFlipLobbyTeams matched to type: CMsgFlipLobbyTeams
CMsgCustomGameCreate
Request: k_EMsgGCCustomGameCreate matched to type: CMsgCustomGameCreate
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
CMsgClientIgnoredUser
CMsgGCClientIgnoredUser
CMsgClientIgnoredUser
CMsgGCClientIgnoredUser
CMsgClientIgnoredUser
CMsgClientIgnoredUser
CMsgDOTAClientIgnoredUser
Request: k_EMsgGCClientIgnoredUser matched to type: CMsgDOTAClientIgnoredUser
CMsgFantasyLeagueCreateRequest
CMsgGCFantasyLeagueCreateRequest
CMsgFantasyLeagueCreateRequest
CMsgGCFantasyLeagueCreateRequest
CMsgFantasyLeagueCreateRequest
CMsgFantasyLeagueCreateRequest
CMsgDOTAFantasyLeagueCreateRequest
Request: k_EMsgGCFantasyLeagueCreateRequest matched to type: CMsgDOTAFantasyLeagueCreateRequest
Request: k_EMsgGCFantasyLeagueCreateRequest matched to response: k_EMsgGCFantasyLeagueCreateResponse
CMsgFantasyLeagueCreateResponse
CMsgGCFantasyLeagueCreateResponse
CMsgFantasyLeagueCreateResult
CMsgGCFantasyLeagueCreateResult
CMsgFantasyLeagueCreateResponse
CMsgFantasyLeagueCreateResponse
CMsgDOTAFantasyLeagueCreateResponse
Request: k_EMsgGCFantasyLeagueCreateResponse matched to type: CMsgDOTAFantasyLeagueCreateResponse
CMsgFantasyTeamCreateRequest
CMsgGCFantasyTeamCreateRequest
CMsgFantasyTeamCreateRequest
CMsgGCFantasyTeamCreateRequest
CMsgFantasyTeamCreateRequest
CMsgFantasyTeamCreateRequest
CMsgDOTAFantasyTeamCreateRequest
Request: k_EMsgGCFantasyTeamCreateRequest matched to type: CMsgDOTAFantasyTeamCreateRequest
Request: k_EMsgGCFantasyTeamCreateRequest matched to response: k_EMsgGCFantasyTeamCreateResponse
CMsgFantasyTeamCreateResponse
CMsgGCFantasyTeamCreateResponse
CMsgFantasyTeamCreateResult
CMsgGCFantasyTeamCreateResult
CMsgFantasyTeamCreateResponse
CMsgFantasyTeamCreateResponse
CMsgDOTAFantasyTeamCreateResponse
Request: k_EMsgGCFantasyTeamCreateResponse matched to type: CMsgDOTAFantasyTeamCreateResponse
CMsgClientSuspended
Request: k_EMsgGCClientSuspended matched to type: CMsgClientSuspended
CMsgPartyMemberSetCoach
CMsgGCPartyMemberSetCoach
CMsgPartyMemberSetCoach
CMsgGCPartyMemberSetCoach
CMsgPartyMemberSetCoach
CMsgPartyMemberSetCoach
CMsgDOTAPartyMemberSetCoach
Request: k_EMsgGCPartyMemberSetCoach matched to type: CMsgDOTAPartyMemberSetCoach
CMsgFantasyLeagueEditInvitesRequest
CMsgGCFantasyLeagueEditInvitesRequest
CMsgFantasyLeagueEditInvitesRequest
CMsgGCFantasyLeagueEditInvitesRequest
CMsgFantasyLeagueEditInvitesRequest
CMsgFantasyLeagueEditInvitesRequest
CMsgDOTAFantasyLeagueEditInvitesRequest
Request: k_EMsgGCFantasyLeagueEditInvitesRequest matched to type: CMsgDOTAFantasyLeagueEditInvitesRequest
Request: k_EMsgGCFantasyLeagueEditInvitesRequest matched to response: k_EMsgGCFantasyLeagueEditInvitesResponse
CMsgFantasyLeagueEditInvitesResponse
CMsgGCFantasyLeagueEditInvitesResponse
CMsgFantasyLeagueEditInvitesResult
CMsgGCFantasyLeagueEditInvitesResult
CMsgFantasyLeagueEditInvitesResponse
CMsgFantasyLeagueEditInvitesResponse
CMsgDOTAFantasyLeagueEditInvitesResponse
Request: k_EMsgGCFantasyLeagueEditInvitesResponse matched to type: CMsgDOTAFantasyLeagueEditInvitesResponse
CMsgPracticeLobbySetCoach
Request: k_EMsgGCPracticeLobbySetCoach matched to type: CMsgPracticeLobbySetCoach
CMsgFantasyLeagueEditInfoRequest
CMsgGCFantasyLeagueEditInfoRequest
CMsgFantasyLeagueEditInfoRequest
CMsgGCFantasyLeagueEditInfoRequest
CMsgFantasyLeagueEditInfoRequest
CMsgFantasyLeagueEditInfoRequest
CMsgDOTAFantasyLeagueEditInfoRequest
Request: k_EMsgGCFantasyLeagueEditInfoRequest matched to type: CMsgDOTAFantasyLeagueEditInfoRequest
Request: k_EMsgGCFantasyLeagueEditInfoRequest matched to response: k_EMsgGCFantasyLeagueEditInfoResponse
CMsgFantasyLeagueEditInfoResponse
CMsgGCFantasyLeagueEditInfoResponse
CMsgFantasyLeagueEditInfoResult
CMsgGCFantasyLeagueEditInfoResult
CMsgFantasyLeagueEditInfoResponse
CMsgFantasyLeagueEditInfoResponse
CMsgDOTAFantasyLeagueEditInfoResponse
Request: k_EMsgGCFantasyLeagueEditInfoResponse matched to type: CMsgDOTAFantasyLeagueEditInfoResponse
CMsgFantasyLeagueDraftStatusRequest
CMsgGCFantasyLeagueDraftStatusRequest
CMsgFantasyLeagueDraftStatusRequest
CMsgGCFantasyLeagueDraftStatusRequest
CMsgFantasyLeagueDraftStatusRequest
CMsgFantasyLeagueDraftStatusRequest
CMsgDOTAFantasyLeagueDraftStatusRequest
Request: k_EMsgGCFantasyLeagueDraftStatusRequest matched to type: CMsgDOTAFantasyLeagueDraftStatusRequest
Request: k_EMsgGCFantasyLeagueDraftStatusRequest matched to response: k_EMsgGCFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgGCFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgGCFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgDOTAFantasyLeagueDraftStatus
Request: k_EMsgGCFantasyLeagueDraftStatus matched to type: CMsgDOTAFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgGCFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgGCFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftStatus
CMsgDOTAFantasyLeagueDraftStatus
Request: k_EMsgGCFantasyLeagueDraftStatus matched to type: CMsgDOTAFantasyLeagueDraftStatus
CMsgFantasyLeagueDraftPlayerRequest
CMsgGCFantasyLeagueDraftPlayerRequest
CMsgFantasyLeagueDraftPlayerRequest
CMsgGCFantasyLeagueDraftPlayerRequest
CMsgFantasyLeagueDraftPlayerRequest
CMsgFantasyLeagueDraftPlayerRequest
CMsgDOTAFantasyLeagueDraftPlayerRequest
Request: k_EMsgGCFantasyLeagueDraftPlayerRequest matched to type: CMsgDOTAFantasyLeagueDraftPlayerRequest
Request: k_EMsgGCFantasyLeagueDraftPlayerRequest matched to response: k_EMsgGCFantasyLeagueDraftPlayerResponse
CMsgFantasyLeagueDraftPlayerResponse
CMsgGCFantasyLeagueDraftPlayerResponse
CMsgFantasyLeagueDraftPlayerResult
CMsgGCFantasyLeagueDraftPlayerResult
CMsgFantasyLeagueDraftPlayerResponse
CMsgFantasyLeagueDraftPlayerResponse
CMsgDOTAFantasyLeagueDraftPlayerResponse
Request: k_EMsgGCFantasyLeagueDraftPlayerResponse matched to type: CMsgDOTAFantasyLeagueDraftPlayerResponse
CMsgFantasyLeagueMatchupsRequest
CMsgGCFantasyLeagueMatchupsRequest
CMsgFantasyLeagueMatchupsRequest
CMsgGCFantasyLeagueMatchupsRequest
CMsgFantasyLeagueMatchupsRequest
CMsgFantasyLeagueMatchupsRequest
CMsgDOTAFantasyLeagueMatchupsRequest
Request: k_EMsgGCFantasyLeagueMatchupsRequest matched to type: CMsgDOTAFantasyLeagueMatchupsRequest
Request: k_EMsgGCFantasyLeagueMatchupsRequest matched to response: k_EMsgGCFantasyLeagueMatchupsResponse
CMsgFantasyLeagueMatchupsResponse
CMsgGCFantasyLeagueMatchupsResponse
CMsgFantasyLeagueMatchupsResult
CMsgGCFantasyLeagueMatchupsResult
CMsgFantasyLeagueMatchupsResponse
CMsgFantasyLeagueMatchupsResponse
CMsgDOTAFantasyLeagueMatchupsResponse
Request: k_EMsgGCFantasyLeagueMatchupsResponse matched to type: CMsgDOTAFantasyLeagueMatchupsResponse
CMsgFantasyTeamRosterSwapRequest
CMsgGCFantasyTeamRosterSwapRequest
CMsgFantasyTeamRosterSwapRequest
CMsgGCFantasyTeamRosterSwapRequest
CMsgFantasyTeamRosterSwapRequest
CMsgFantasyTeamRosterSwapRequest
CMsgDOTAFantasyTeamRosterSwapRequest
Request: k_EMsgGCFantasyTeamRosterSwapRequest matched to type: CMsgDOTAFantasyTeamRosterSwapRequest
Request: k_EMsgGCFantasyTeamRosterSwapRequest matched to response: k_EMsgGCFantasyTeamRosterSwapResponse
CMsgFantasyTeamRosterSwapResponse
CMsgGCFantasyTeamRosterSwapResponse
CMsgFantasyTeamRosterSwapResult
CMsgGCFantasyTeamRosterSwapResult
CMsgFantasyTeamRosterSwapResponse
CMsgFantasyTeamRosterSwapResponse
CMsgDOTAFantasyTeamRosterSwapResponse
Request: k_EMsgGCFantasyTeamRosterSwapResponse matched to type: CMsgDOTAFantasyTeamRosterSwapResponse
CMsgFantasyTeamRosterRequest
CMsgGCFantasyTeamRosterRequest
CMsgFantasyTeamRosterRequest
CMsgGCFantasyTeamRosterRequest
CMsgFantasyTeamRosterRequest
CMsgFantasyTeamRosterRequest
CMsgDOTAFantasyTeamRosterRequest
Request: k_EMsgGCFantasyTeamRosterRequest matched to type: CMsgDOTAFantasyTeamRosterRequest
Request: k_EMsgGCFantasyTeamRosterRequest matched to response: k_EMsgGCFantasyTeamRosterResponse
CMsgFantasyTeamRosterResponse
CMsgGCFantasyTeamRosterResponse
CMsgFantasyTeamRosterResult
CMsgGCFantasyTeamRosterResult
CMsgFantasyTeamRosterResponse
CMsgFantasyTeamRosterResponse
CMsgDOTAFantasyTeamRosterResponse
Request: k_EMsgGCFantasyTeamRosterResponse matched to type: CMsgDOTAFantasyTeamRosterResponse
CMsgFantasyTeamRosterAddDropRequest
CMsgGCFantasyTeamRosterAddDropRequest
CMsgFantasyTeamRosterAddDropRequest
CMsgGCFantasyTeamRosterAddDropRequest
CMsgFantasyTeamRosterAddDropRequest
CMsgFantasyTeamRosterAddDropRequest
CMsgDOTAFantasyTeamRosterAddDropRequest
Request: k_EMsgGCFantasyTeamRosterAddDropRequest matched to type: CMsgDOTAFantasyTeamRosterAddDropRequest
Request: k_EMsgGCFantasyTeamRosterAddDropRequest matched to response: k_EMsgGCFantasyTeamRosterAddDropResponse
CMsgFantasyTeamRosterAddDropResponse
CMsgGCFantasyTeamRosterAddDropResponse
CMsgFantasyTeamRosterAddDropResult
CMsgGCFantasyTeamRosterAddDropResult
CMsgFantasyTeamRosterAddDropResponse
CMsgFantasyTeamRosterAddDropResponse
CMsgDOTAFantasyTeamRosterAddDropResponse
Request: k_EMsgGCFantasyTeamRosterAddDropResponse matched to type: CMsgDOTAFantasyTeamRosterAddDropResponse
CMsgPresentedClientTerminateDlg
Request: k_EMsgPresentedClientTerminateDlg matched to type: CMsgPresentedClientTerminateDlg
CMsgFantasyPlayerHisoricalStatsRequest
CMsgGCFantasyPlayerHisoricalStatsRequest
CMsgFantasyPlayerHisoricalStatsRequest
CMsgGCFantasyPlayerHisoricalStatsRequest
CMsgFantasyPlayerHisoricalStatsRequest
CMsgFantasyPlayerHisoricalStatsRequest
CMsgDOTAFantasyPlayerHisoricalStatsRequest
Request: k_EMsgGCFantasyPlayerHisoricalStatsRequest matched to type: CMsgDOTAFantasyPlayerHisoricalStatsRequest
Request: k_EMsgGCFantasyPlayerHisoricalStatsRequest matched to response: k_EMsgGCFantasyPlayerHisoricalStatsResponse
CMsgFantasyPlayerHisoricalStatsResponse
CMsgGCFantasyPlayerHisoricalStatsResponse
CMsgFantasyPlayerHisoricalStatsResult
CMsgGCFantasyPlayerHisoricalStatsResult
CMsgFantasyPlayerHisoricalStatsResponse
CMsgFantasyPlayerHisoricalStatsResponse
CMsgDOTAFantasyPlayerHisoricalStatsResponse
Request: k_EMsgGCFantasyPlayerHisoricalStatsResponse matched to type: CMsgDOTAFantasyPlayerHisoricalStatsResponse
CMsgLobbyUpdateBroadcastChannelInfo
CMsgGCLobbyUpdateBroadcastChannelInfo
Request: k_EMsgGCLobbyUpdateBroadcastChannelInfo matched to type: CMsgGCLobbyUpdateBroadcastChannelInfo
CMsgFantasyTeamTradesRequest
CMsgGCFantasyTeamTradesRequest
CMsgFantasyTeamTradesRequest
CMsgGCFantasyTeamTradesRequest
CMsgFantasyTeamTradesRequest
CMsgFantasyTeamTradesRequest
CMsgDOTAFantasyTeamTradesRequest
Request: k_EMsgGCFantasyTeamTradesRequest matched to type: CMsgDOTAFantasyTeamTradesRequest
Request: k_EMsgGCFantasyTeamTradesRequest matched to response: k_EMsgGCFantasyTeamTradesResponse
CMsgFantasyTeamTradesResponse
CMsgGCFantasyTeamTradesResponse
CMsgFantasyTeamTradesResult
CMsgGCFantasyTeamTradesResult
CMsgFantasyTeamTradesResponse
CMsgFantasyTeamTradesResponse
CMsgDOTAFantasyTeamTradesResponse
Request: k_EMsgGCFantasyTeamTradesResponse matched to type: CMsgDOTAFantasyTeamTradesResponse
CMsgFantasyTeamTradeCancelRequest
CMsgGCFantasyTeamTradeCancelRequest
CMsgFantasyTeamTradeCancelRequest
CMsgGCFantasyTeamTradeCancelRequest
CMsgFantasyTeamTradeCancelRequest
CMsgFantasyTeamTradeCancelRequest
CMsgDOTAFantasyTeamTradeCancelRequest
Request: k_EMsgGCFantasyTeamTradeCancelRequest matched to type: CMsgDOTAFantasyTeamTradeCancelRequest
Request: k_EMsgGCFantasyTeamTradeCancelRequest matched to response: k_EMsgGCFantasyTeamTradeCancelResponse
CMsgFantasyTeamTradeCancelResponse
CMsgGCFantasyTeamTradeCancelResponse
CMsgFantasyTeamTradeCancelResult
CMsgGCFantasyTeamTradeCancelResult
CMsgFantasyTeamTradeCancelResponse
CMsgFantasyTeamTradeCancelResponse
CMsgDOTAFantasyTeamTradeCancelResponse
Request: k_EMsgGCFantasyTeamTradeCancelResponse matched to type: CMsgDOTAFantasyTeamTradeCancelResponse
CMsgProcessFantasyScheduledEvent
CMsgGCProcessFantasyScheduledEvent
CMsgProcessFantasyScheduledEvent
CMsgGCProcessFantasyScheduledEvent
CMsgProcessFantasyScheduledEvent
CMsgProcessFantasyScheduledEvent
CMsgDOTAProcessFantasyScheduledEvent
Request: k_EMsgGCProcessFantasyScheduledEvent matched to type: CMsgDOTAProcessFantasyScheduledEvent
CMsgDOTAChatChannelMemberUpdate
Request: k_EMsgDOTAChatChannelMemberUpdate matched to type: CMsgDOTAChatChannelMemberUpdate
CMsgDOTAGetEventPoints
Request: k_EMsgDOTAGetEventPoints matched to type: CMsgDOTAGetEventPoints
Request: k_EMsgDOTAGetEventPoints matched to response: k_EMsgDOTAGetEventPointsResponse
CMsgDOTAGetEventPointsResponse
Request: k_EMsgDOTAGetEventPointsResponse matched to type: CMsgDOTAGetEventPointsResponse
CMsgDOTASendFriendRecruits
Request: k_EMsgDOTASendFriendRecruits matched to type: CMsgDOTASendFriendRecruits
CMsgDOTAFriendRecruitsRequest
Request: k_EMsgDOTAFriendRecruitsRequest matched to type: CMsgDOTAFriendRecruitsRequest
Request: k_EMsgDOTAFriendRecruitsRequest matched to response: k_EMsgDOTAFriendRecruitsResponse