-
Notifications
You must be signed in to change notification settings - Fork 2
/
gameevents_dump.txt
1244 lines (908 loc) · 16.4 KB
/
gameevents_dump.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
server_spawn
string hostname
string address
short port
string game
string mapname
string addonname
long maxplayers
string os
bool dedicated
bool password
server_pre_shutdown
string reason
server_shutdown
string reason
server_message
string text
server_cvar
string cvarname
string cvarvalue
server_addban
string name
short userid
string networkid
string ip
string duration
string by
bool kicked
server_removeban
string networkid
string ip
string by
player_activate
short userid
player_connect_full
short userid
byte index
short PlayerID
player_say
short userid
string text
player_full_update
short userid
short count
player_connect
string name
byte index
short userid
string networkid
string address
player_disconnect
short userid
short reason
string name
string networkid
short PlayerID
player_info
string name
byte index
short userid
string networkid
bool bot
player_spawn
short userid
player_team
short userid
byte team
byte oldteam
bool disconnect
bool autoteam
bool silent
string name
bool isbot
player_changename
short userid
string oldname
string newname
player_class
short userid
string class
player_score
short userid
short kills
short deaths
short score
player_hurt
short userid
short attacker
byte health
player_shoot
short userid
byte weapon
byte mode
player_chat
bool teamonly
short userid
short playerid
string text
teamplay_broadcast_audio
byte team
string sound
finale_start
short rushes
player_stats_updated
bool forceupload
user_data_downloaded
ragdoll_dissolved
long entindex
team_info
byte teamid
string teamname
team_score
byte teamid
short score
hltv_cameraman
short index
hltv_chase
short target1
short target2
short distance
short theta
short phi
byte inertia
byte ineye
hltv_rank_camera
byte index
float rank
short target
hltv_rank_entity
short index
float rank
short target
hltv_fixed
long posx
long posy
long posz
short theta
short phi
short offset
float fov
short target
hltv_message
string text
hltv_status
long clients
long slots
short proxies
string master
hltv_title
string text
hltv_chat
string name
string text
uint64 steamID
hltv_versioninfo
long version
demo_stop
map_shutdown
map_transition
hostname_changed
string hostname
difficulty_changed
short newDifficulty
short oldDifficulty
string strDifficulty
game_message
byte target
string text
game_newmap
string mapname
bool transition
round_start
long timelimit
long fraglimit
string objective
round_end
byte winner
byte reason
string message
float time
round_start_pre_entity
round_start_post_nav
round_freeze_end
teamplay_round_start
bool full_reset
player_death
short userid
short attacker
player_footstep
short userid
player_hintmessage
string hintmessage
break_breakable
long entindex
short userid
byte material
break_prop
long entindex
short userid
bool player_held
bool player_thrown
bool player_dropped
entity_killed
long entindex_killed
long entindex_attacker
long entindex_inflictor
long damagebits
door_open
short userid
bool checkpoint
bool closed
door_close
short userid
bool checkpoint
door_unlocked
short userid
bool checkpoint
vote_started
string issue
string param1
string votedata
byte team
long initiator
vote_failed
byte team
vote_passed
string details
string param1
byte team
vote_changed
byte yesVotes
byte noVotes
byte potentialVotes
vote_cast_yes
byte team
long entityid
vote_cast_no
byte team
long entityid
achievement_event
string achievement_name
short cur_val
short max_val
achievement_earned
byte player
short achievement
achievement_write_failed
bonus_updated
short numadvanced
short numbronze
short numsilver
short numgold
spec_target_updated
entity_visible
short userid
long subject
string classname
string entityname
player_use_miss
short userid
gameinstructor_draw
gameinstructor_nodraw
flare_ignite_npc
long entindex
helicopter_grenade_punt_miss
physgun_pickup
long entindex
inventory_updated
short itemdef
long itemid
cart_updated
store_pricesheet_updated
item_schema_initialized
drop_rate_modified
event_ticket_modified
gc_connected
instructor_start_lesson
short userid
string hint_name
long hint_target
instructor_close_lesson
short userid
string hint_name
instructor_server_hint_create
short userid
long hint_entindex
string hint_name
string hint_replace_key
long hint_target
short hint_activator_userid
short hint_timeout
string hint_icon_onscreen
string hint_icon_offscreen
string hint_caption
string hint_activator_caption
string hint_color
float hint_icon_offset
float hint_range
long hint_flags
string hint_binding
bool hint_allow_nodraw_target
bool hint_nooffscreen
bool hint_forcecaption
bool hint_local_player_only
string hint_start_sound
string hint_layoutfile
short hint_vr_panel_type
float hint_vr_height_offset
float hint_vr_offset_x
float hint_vr_offset_y
float hint_vr_offset_z
instructor_server_hint_stop
string hint_name
long hint_entindex
set_instructor_group_enabled
string group
short enabled
clientside_lesson_closed
string lesson_name
dynamic_shadow_light_changed
dota_chase_hero
short target1
short target2
byte type
short priority
float gametime
bool highlight
byte target1playerid
byte target2playerid
short eventtype
dota_combatlog
byte type
short sourcename
short targetname
short attackername
short inflictorname
bool attackerillusion
bool targetillusion
short value
short health
float timestamp
short targetsourcename
float timestampraw
bool attackerhero
bool targethero
bool ability_toggle_on
bool ability_toggle_off
short ability_level
short gold_reason
short xp_reason
dota_game_state_change
short old_state
short new_state
dota_player_pick_hero
short player
short heroindex
string hero
modifier_event
string eventname
short caster
short ability
dota_player_kill
short victim_userid
short killer1_userid
short killer2_userid
short killer3_userid
short killer4_userid
short killer5_userid
short bounty
short neutral
short greevil
dota_player_deny
short killer_userid
short victim_userid
dota_barracks_kill
short barracks_id
short killer_playerid
short killer_team
short bounty_amount
dota_tower_kill
short killer_userid
short teamnumber
short gold
dota_effigy_kill
short owner_userid
dota_roshan_kill
short teamnumber
short gold
dota_courier_lost
short killerid
short teamnumber
short bounty_gold
dota_courier_respawned
short teamnumber
dota_glyph_used
short teamnumber
dota_super_creeps
short teamnumber
dota_item_purchase
short userid
long item_ability_id
dota_item_gifted
short userid
long item_ability_id
short sourceid
dota_rune_pickup
short userid
short type
short rune
short bounty_amount
dota_ward_killed
short userid
short type
short bounty_amount
dota_rune_spotted
short userid
short rune
string map_location
short rune_team
dota_item_spotted
short userid
long item_ability_id
dota_no_battle_points
short userid
short reason
dota_chat_informational
short userid
short type
dota_action_item
short reason
short itemdef
short message
dota_chat_ban_notification
short userid
dota_chat_event
short userid
short gold
short message
dota_chat_timed_reward
short userid
short itmedef
short message
dota_pause_event
short userid
short value
short message
dota_chat_kill_streak
short gold
short killer_id
short killer_streak
short killer_multikill
short victim_id
short victim_streak
dota_chat_first_blood
short gold
short killer_id
short victim_id
dota_chat_assassin_announce
short assassin_id
short target_id
short message
dota_chat_assassin_denied
short assassin_id
short target_id
short message
dota_chat_assassin_success
short assassin_id
short target_id
short message
dota_player_update_hero_selection
bool tabcycle
dota_player_update_selected_unit
dota_player_update_query_unit
dota_player_update_killcam_unit
dota_player_take_tower_damage
short PlayerID
short damage
dota_hud_error_message
byte reason
string message
dota_action_success
dota_starting_position_changed
dota_money_changed
dota_enemy_money_changed
dota_portrait_unit_stats_changed
dota_portrait_unit_modifiers_changed
bool modifier_affects_abilities
dota_force_portrait_update
dota_inventory_changed
dota_item_suggestions_changed
dota_estimated_match_duration_changed
dota_hero_ability_points_changed
dota_item_picked_up
string itemname
short PlayerID
short ItemEntityIndex
short HeroEntityIndex
dota_inventory_item_changed
short entityIndex
dota_ability_changed
short entityIndex
dota_spectator_talent_changed
string abilityname
short playerid
dota_portrait_ability_layout_changed
dota_inventory_item_added
string itemname
dota_inventory_changed_query_unit
dota_link_clicked
string link
bool nav
bool nav_back
short recipe
short shop
dota_set_quick_buy
string item
byte recipe
bool toggle
dota_quick_buy_changed
string item
byte recipe
dota_player_shop_changed
byte prevshopmask
byte shopmask
dota_player_show_killcam
byte nodes
short player
dota_player_show_minikillcam
byte nodes
short player
gc_user_session_created
team_data_updated
guild_data_updated
guild_open_parties_updated
fantasy_updated
fantasy_league_changed
fantasy_score_info_changed
league_admin_info_updated
league_series_info_updated
player_info_updated
player_info_individual_updated
long account_id
game_rules_state_change
match_history_updated
uint64 SteamID
match_details_updated
uint64 matchID
byte result
team_details_updated
long teamID
live_games_updated
recent_matches_updated
short Page
news_updated
persona_updated
uint64 SteamID
tournament_state_updated
party_updated
lobby_updated
dashboard_caches_cleared
last_hit
short PlayerID
short EntKilled
bool FirstBlood
bool HeroKill
bool TowerKill
player_completed_game
short PlayerID
byte Winner
player_reconnected
short PlayerID
nommed_tree
short PlayerID
dota_rune_activated_server
short PlayerID
short rune
dota_player_gained_level
short PlayerID
short level
dota_player_learned_ability
short PlayerID
short player
string abilityname
dota_player_used_ability
short PlayerID
string abilityname
dota_non_player_used_ability
string abilityname
dota_player_begin_cast
short PlayerID
string abilityname
dota_non_player_begin_cast
string abilityname
dota_ability_channel_finished
string abilityname
bool interrupted
dota_holdout_revive_complete
short caster
short target
float channel_time
dota_holdout_revive_eliminated
short caster
short target
float channel_time
dota_player_killed
short PlayerID
bool HeroKill
bool TowerKill
bindpanel_open
bindpanel_close
keybind_changed
dota_item_drag_begin
dota_item_drag_end
dota_shop_item_drag_begin
dota_shop_item_drag_end
dota_item_purchased
short PlayerID
string itemname
short itemcost
dota_item_combined
short PlayerID
string itemname
short itemcost
dota_item_used
short PlayerID
string itemname
dota_item_auto_purchase
short item_id
dota_unit_event
short victim
short attacker
short basepriority
short priority
short eventtype
dota_quest_started
long questIndex
dota_quest_completed
long questIndex
gameui_activated
gameui_hidden
player_fullyjoined
short userid
string name
dota_spectate_hero
byte entindex
dota_match_done
byte winningteam
dota_match_done_client
joined_chat_channel
string channelName
left_chat_channel
string channelName
gc_chat_channel_list_updated
file_downloaded
bool success
string local_filename
string remote_url
player_report_counts_updated
byte positive_remaining
byte negative_remaining
short positive_total
short negative_total
scaleform_file_download_complete
bool success
string local_filename
string remote_url
item_purchased
short itemid
gc_mismatched_version
dota_workshop_fileselected
string filename
dota_workshop_filecanceled
rich_presence_updated
live_leagues_updated
dota_hero_random
short userid
short heroid
dota_river_painted
short userid
short riverid
dota_scan_used
short teamnumber
dota_rd_chat_turn
short userid
dota_ad_nominated_ban
short heroid
dota_ad_ban
short heroid
dota_ad_ban_count
short count
dota_favorite_heroes_updated
profile_opened
profile_closed
item_preview_closed
dashboard_switched_section
short section
dota_tournament_item_event
short winner_count
short event_type
dota_hero_swap
byte playerid1
byte playerid2
dota_reset_suggested_items
halloween_high_score_received
short round
halloween_phase_end
byte phase
byte team
halloween_high_score_request_failed
short round
dota_hud_skin_changed
string skin
byte style
dota_inventory_player_got_item
string itemname
player_is_experienced
player_is_notexperienced
dota_tutorial_lesson_start
dota_tutorial_task_advance
dota_tutorial_shop_toggled
bool shop_opened
map_location_updated
richpresence_custom_updated
game_end_visible
enable_china_logomark
highlight_hud_element
string elementname
float duration
hide_highlight_hud_element
intro_video_finished
matchmaking_status_visibility_changed
practice_lobby_visibility_changed
dota_courier_transfer_item
full_ui_unlocked
hero_selector_preview_set
short setindex
antiaddiction_toast