-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheventos.json
4014 lines (4014 loc) · 130 KB
/
eventos.json
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
[
{
"Event": "ACCOUNT_CHARACTER_LIST_RECIEVED",
"Description": "This event is not yet documented"
},
{
"Event": "ACCOUNT_DATA_INITIALIZED",
"Description": "This event is not yet documented"
},
{
"Event": "ACCOUNT_DATA_RESTORED",
"Description": "This event is not yet documented"
},
{
"Event": "ACCOUNT_MESSAGES_AVAILABLE",
"Description": "This event is not yet documented"
},
{
"Event": "ACCOUNT_MESSAGES_BODY_LOADED",
"Description": "This event is not yet documented"
},
{
"Event": "ACCOUNT_MESSAGES_HEADERS_LOADED",
"Description": "This event is not yet documented"
},
{
"Event": "ACHIEVEMENT_EARNED",
"Description": "Fires when the player earns an achievement"
},
{
"Event": "ACTIONBAR_HIDEGRID",
"Description": "Fires when an item, spell or other entity that can be placed into an action bar slot is removed from the cursor"
},
{
"Event": "ACTIONBAR_PAGE_CHANGED",
"Description": "Fires when the main action bar changes pages"
},
{
"Event": "ACTIONBAR_SHOWGRID",
"Description": "Fires when an item, spell or other entity that can be placed into an action bar slot is picked up onto the cursor"
},
{
"Event": "ACTIONBAR_SHOW_BOTTOMLEFT",
"Description": "This event is not yet documented"
},
{
"Event": "ACTIONBAR_SLOT_CHANGED",
"Description": "Fires when the contents of an action bar slot change"
},
{
"Event": "ACTIONBAR_UPDATE_COOLDOWN",
"Description": "Fires when the cooldown for an action bar item begins or ends"
},
{
"Event": "ACTIONBAR_UPDATE_STATE",
"Description": "Fires when the state of an action bar item changes"
},
{
"Event": "ACTIONBAR_UPDATE_USABLE",
"Description": "Fires when an action becomes usable or unusable"
},
{
"Event": "ACTIVE_TALENT_GROUP_CHANGED",
"Description": "Fires when the player (with Dual Talent Specialization enabled) switches talent builds"
},
{
"Event": "ADDON_ACTION_BLOCKED",
"Description": "Fires when a non-Blizzard addon attempts to use a protected API"
},
{
"Event": "ADDON_ACTION_FORBIDDEN",
"Description": "Fires when a non-Blizzard addon attempts to use a protected API"
},
{
"Event": "ADDON_LIST_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "ADDON_LOADED",
"Description": "Fires when an addon and its saved variables are loaded"
},
{
"Event": "AMPLIFY_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "ARCHAEOLOGY_CLOSED",
"Description": "Fires when the archeology panel is closed."
},
{
"Event": "ARCHAEOLOGY_FIND_COMPLETE",
"Description": "This event is not yet documented"
},
{
"Event": "ARCHAEOLOGY_SURVEY_CAST",
"Description": "Fires when the player finishes casting survey"
},
{
"Event": "ARCHAEOLOGY_TOGGLE",
"Description": "Fires when the archeology panel is opened or closed."
},
{
"Event": "AREA_SPIRIT_HEALER_IN_RANGE",
"Description": "Fires when the player enters into the area of effect of a spirit healer that periodically resurrects nearby player units"
},
{
"Event": "AREA_SPIRIT_HEALER_OUT_OF_RANGE",
"Description": "Fires when the player enters leaves the area of effect of a spirit healer that periodically resurrects nearby player units"
},
{
"Event": "ARENA_OPPONENT_UPDATE",
"Description": "Fires when the availability of information about an arena opponent changes"
},
{
"Event": "ARENA_PREP_OPPONENT_SPECIALIZATIONS",
"Description": "Fires when the availability of information about an arena opponent specialization change. Used by pre-arena specialization detection UI."
},
{
"Event": "ARENA_SEASON_WORLD_STATE",
"Description": "Fires when the arena season changes"
},
{
"Event": "ARTIFACT_COMPLETE",
"Description": "Fires when an artifact is completed (solved project)"
},
{
"Event": "ARTIFACT_DIGSITE_COMPLETE",
"Description": "This event is not yet documented"
},
{
"Event": "ARTIFACT_DIG_SITE_UPDATED",
"Description": "Fires when a new archaeology digsite appears on the map, or an old one disappears"
},
{
"Event": "ARTIFACT_HISTORY_READY",
"Description": "Fires when the created artifact listing data of the player becomes available."
},
{
"Event": "ARTIFACT_UPDATE",
"Description": "Fires when the artifact display should be updated"
},
{
"Event": "AUCTION_BIDDER_LIST_UPDATE",
"Description": "Fires when information becomes available or changes for the list of auctions bid on by the player "
},
{
"Event": "AUCTION_HOUSE_CLOSED",
"Description": "Fires when the player ends interaction with an auction house"
},
{
"Event": "AUCTION_HOUSE_DISABLED",
"Description": "Fires when the server refuses to give the player access to the auction house because it is disabled"
},
{
"Event": "AUCTION_HOUSE_SHOW",
"Description": "Fires when the player begins interaction with an auction house"
},
{
"Event": "AUCTION_ITEM_LIST_UPDATE",
"Description": "Fires when the information becomes available for the list of auction browse/search results"
},
{
"Event": "AUCTION_MULTISELL_FAILURE",
"Description": "Fires when an auction house multisell could not complete for any reason "
},
{
"Event": "AUCTION_MULTISELL_START",
"Description": "Fires when the player starts a multisell in the auction house"
},
{
"Event": "AUCTION_MULTISELL_UPDATE",
"Description": "Fires when one of the auctions in an auction house multisell has successfully been created"
},
{
"Event": "AUCTION_OWNED_LIST_UPDATE",
"Description": "Fires when information becomes available or changes for the list of auctions placed by the player"
},
{
"Event": "AUTH_CHALLENGE_FINISHED",
"Description": "This event is not yet documented"
},
{
"Event": "AUTH_CHALLENGE_UI_INVALID",
"Description": "This event is not yet documented"
},
{
"Event": "AUTOEQUIP_BIND_CONFIRM",
"Description": "Fires when the player attempts to equip an item which will become soulbound in the process"
},
{
"Event": "AUTOFOLLOW_BEGIN",
"Description": "Fires when the player starts following another character"
},
{
"Event": "AUTOFOLLOW_END",
"Description": "Fires when the player stops following another character"
},
{
"Event": "AVOIDANCE_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "BAG_CLOSED",
"Description": "Fires when one of the player's containers is closed"
},
{
"Event": "BAG_NEW_ITEMS_UPDATED",
"Description": "This event is not yet documented"
},
{
"Event": "BAG_OPEN",
"Description": "Fires when one of the player's containers is opened"
},
{
"Event": "BAG_SLOT_FLAGS_UPDATED",
"Description": "This event is not yet documented"
},
{
"Event": "BAG_UPDATE",
"Description": "Fires when the contents of one of the player's containers change"
},
{
"Event": "BAG_UPDATE_COOLDOWN",
"Description": "Fires when the cooldown begins or ends for an item in one of the player's containers"
},
{
"Event": "BAG_UPDATE_DELAYED",
"Description": "This event is not yet documented"
},
{
"Event": "BANKFRAME_CLOSED",
"Description": "Fires when the player ends interaction with a bank"
},
{
"Event": "BANKFRAME_OPENED",
"Description": "Fires when the player begins interaction with a bank"
},
{
"Event": "BANK_BAG_SLOT_FLAGS_UPDATED",
"Description": "This event is not yet documented"
},
{
"Event": "BARBER_SHOP_APPEARANCE_APPLIED",
"Description": "Fires after changes to the player's appearance have been purchased at a barber shop"
},
{
"Event": "BARBER_SHOP_CLOSE",
"Description": "Fires when the player ends interaction with a barber shop"
},
{
"Event": "BARBER_SHOP_OPEN",
"Description": "Fires when the player begins interaction with a barber shop"
},
{
"Event": "BARBER_SHOP_SUCCESS",
"Description": "Fires immediately when changes to the player's appearance have been purchased at a barber shop"
},
{
"Event": "BATTLEFIELDS_CLOSED",
"Description": "Fires when the UI is no longer available for queueing for an arena or specific battleground instance"
},
{
"Event": "BATTLEFIELDS_SHOW",
"Description": "Fires when the UI becomes available for queueing for an arena or specific battleground instance"
},
{
"Event": "BATTLEFIELD_MGR_DROP_TIMER_CANCELED",
"Description": "This event is not yet documented"
},
{
"Event": "BATTLEFIELD_MGR_DROP_TIMER_STARTED",
"Description": "This event is not yet documented"
},
{
"Event": "BATTLEFIELD_MGR_EJECTED",
"Description": "Fires when the player has been removed from a queued world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_MGR_EJECT_PENDING",
"Description": "Fires when the player will be removed from or cannot yet enter a queued world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_MGR_ENTERED",
"Description": "Fires when the player has been accepted into a queued world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_MGR_ENTRY_INVITE",
"Description": "Fires when the player is invited to enter a queued world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_MGR_QUEUE_INVITE",
"Description": "Fires when the player is invited to queue for a world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_MGR_QUEUE_REQUEST_RESPONSE",
"Description": "Fires in response to the player's attempt to enter or queue for a world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_MGR_STATE_CHANGE",
"Description": "Fires when the player's state changes in the queue for a world PvP zone (e.g. Wintergrasp)"
},
{
"Event": "BATTLEFIELD_QUEUE_TIMEOUT",
"Description": "Fires when a battleground queue expires"
},
{
"Event": "BATTLEGROUND_OBJECTIVES_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "BATTLEGROUND_POINTS_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "BATTLEPET_FORCE_NAME_DECLENSION",
"Description": "This event is not yet documented"
},
{
"Event": "BATTLETAG_INVITE_SHOW",
"Description": "This event is not yet documented"
},
{
"Event": "BATTLE_PET_CURSOR_CLEAR",
"Description": "This event is not yet documented"
},
{
"Event": "BILLING_NAG_DIALOG",
"Description": "Fires when a message should be shown about the player's paid game time expiring soon"
},
{
"Event": "BIND_ENCHANT",
"Description": "Fires when the player attempts to an enchant an item which will become soulbound in the process"
},
{
"Event": "BLACK_MARKET_BID_RESULT",
"Description": "This event is not yet documented"
},
{
"Event": "BLACK_MARKET_CLOSE",
"Description": "This event is not yet documented"
},
{
"Event": "BLACK_MARKET_ITEM_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "BLACK_MARKET_OPEN",
"Description": "This event is not yet documented"
},
{
"Event": "BLACK_MARKET_OUTBID",
"Description": "This event is not yet documented"
},
{
"Event": "BLACK_MARKET_UNAVAILABLE",
"Description": "This event is not yet documented"
},
{
"Event": "BLACK_MARKET_WON",
"Description": "This event is not yet documented"
},
{
"Event": "BN_BLOCK_FAILED_TOO_MANY",
"Description": "This event is not yet documented"
},
{
"Event": "BN_BLOCK_LIST_UPDATED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_CLOSED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_CREATE_FAILED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_CREATE_SUCCEEDED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_INVITE_FAILED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_INVITE_SUCCEEDED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_JOINED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_LEFT",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_MEMBER_JOINED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_MEMBER_LEFT",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_MEMBER_UPDATED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_MESSAGE_BLOCKED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_CHANNEL_MESSAGE_UNDELIVERABLE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_MSG_ADDON",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CHAT_WHISPER_UNDELIVERABLE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_CONNECTED",
"Description": "Fires when the player connects to Battle.net"
},
{
"Event": "BN_CUSTOM_MESSAGE_CHANGED",
"Description": "Fires when the player's Battle.net custom message (broadcast) is changed"
},
{
"Event": "BN_CUSTOM_MESSAGE_LOADED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_DISCONNECTED",
"Description": "Fires when the player disconnects from Battle.net"
},
{
"Event": "BN_FRIEND_ACCOUNT_OFFLINE",
"Description": "Fires when one of your RealID friends logs off"
},
{
"Event": "BN_FRIEND_ACCOUNT_ONLINE",
"Description": "Fires when one of your RealID friends log on"
},
{
"Event": "BN_FRIEND_INFO_CHANGED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_INVITE_ADDED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_INVITE_LIST_INITIALIZED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_INVITE_REMOVED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_INVITE_SEND_RESULT",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_LIST_SIZE_CHANGED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_TOON_OFFLINE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_FRIEND_TOON_ONLINE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_INFO_CHANGED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_MATURE_LANGUAGE_FILTER",
"Description": "Fires whenever the battle.net mature language filter setting is changed."
},
{
"Event": "BN_NEW_PRESENCE",
"Description": "Fires when information about a new Battle.net presence is available"
},
{
"Event": "BN_REQUEST_FOF_FAILED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_REQUEST_FOF_SUCCEEDED",
"Description": "This event is not yet documented"
},
{
"Event": "BN_SELF_OFFLINE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_SELF_ONLINE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_SYSTEM_MESSAGE",
"Description": "This event is not yet documented"
},
{
"Event": "BN_TOON_NAME_UPDATED",
"Description": "This event is not yet documented"
},
{
"Event": "BONUS_ROLL_ACTIVATE",
"Description": "This event is not yet documented"
},
{
"Event": "BONUS_ROLL_DEACTIVATE",
"Description": "This event is not yet documented"
},
{
"Event": "BONUS_ROLL_FAILED",
"Description": "This event is not yet documented"
},
{
"Event": "BONUS_ROLL_RESULT",
"Description": "This event is not yet documented"
},
{
"Event": "BONUS_ROLL_STARTED",
"Description": "This event is not yet documented"
},
{
"Event": "CALENDAR_ACTION_PENDING",
"Description": "Fires when a change to the calendar is in progress"
},
{
"Event": "CALENDAR_CLOSE_EVENT",
"Description": "Fires when the player ends viewing or editing details of a calendar event"
},
{
"Event": "CALENDAR_EVENT_ALARM",
"Description": "Fires when a calendar event is soon to begin"
},
{
"Event": "CALENDAR_NEW_EVENT",
"Description": "Fires when an event created by the player is added to the calendar"
},
{
"Event": "CALENDAR_OPEN_EVENT",
"Description": "Fires when the player begins viewing or editing details of a calendar event"
},
{
"Event": "CALENDAR_UPDATE_ERROR",
"Description": "Fires when a calendar-related error message should be displayed"
},
{
"Event": "CALENDAR_UPDATE_EVENT",
"Description": "Fires when details become available for the event being viewed or edited"
},
{
"Event": "CALENDAR_UPDATE_EVENT_LIST",
"Description": "Fires when the list of events visible on the calendar changes"
},
{
"Event": "CALENDAR_UPDATE_GUILD_EVENTS",
"Description": "This event is not yet documented"
},
{
"Event": "CALENDAR_UPDATE_INVITE_LIST",
"Description": "Fires when the invite/signup list is updated for the event being viewed or edited"
},
{
"Event": "CALENDAR_UPDATE_PENDING_INVITES",
"Description": "Fires when the player receives new calendar event invitations"
},
{
"Event": "CANCEL_LOOT_ROLL",
"Description": "Fires when the player cancels a loot roll"
},
{
"Event": "CANCEL_SUMMON",
"Description": "Fires when a summons offered to the player is canceled"
},
{
"Event": "CHALLENGE_MODE_COMPLETED",
"Description": "This event is not yet documented"
},
{
"Event": "CHALLENGE_MODE_LEADERS_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "CHALLENGE_MODE_MAPS_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "CHALLENGE_MODE_NEW_RECORD",
"Description": "This event is not yet documented"
},
{
"Event": "CHALLENGE_MODE_RESET",
"Description": "This event is not yet documented"
},
{
"Event": "CHALLENGE_MODE_START",
"Description": "This event is not yet documented"
},
{
"Event": "CHANNEL_COUNT_UPDATE",
"Description": "Fires when the number of members in a world or custom chat channel changes"
},
{
"Event": "CHANNEL_FLAGS_UPDATED",
"Description": "Fires when information about a channel for the channel list display changes"
},
{
"Event": "CHANNEL_INVITE_REQUEST",
"Description": "Fires when a player is invited into a chat channel"
},
{
"Event": "CHANNEL_PASSWORD_REQUEST",
"Description": "Fires when the player attempts to join a password protected channel"
},
{
"Event": "CHANNEL_ROSTER_UPDATE",
"Description": "Fires when the list of members in a channel changes"
},
{
"Event": "CHANNEL_UI_UPDATE",
"Description": "Fires when information for the channel list display changes"
},
{
"Event": "CHANNEL_VOICE_UPDATE",
"Description": "Fires when a member in a voice chat channel starts or stops speaking"
},
{
"Event": "CHARACTER_LIST_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "CHARACTER_POINTS_CHANGED",
"Description": "Fires when the player's amount of available talent points changes"
},
{
"Event": "CHARACTER_UNDELETE_FINISHED",
"Description": "This event is not yet documented"
},
{
"Event": "CHARACTER_UNDELETE_STATUS_CHANGED",
"Description": "This event is not yet documented"
},
{
"Event": "CHARACTER_UPGRADE_ABORTED",
"Description": "This event is not yet documented"
},
{
"Event": "CHARACTER_UPGRADE_SPELL_TIER_SET",
"Description": "This event is not yet documented"
},
{
"Event": "CHARACTER_UPGRADE_STARTED",
"Description": "This event is not yet documented"
},
{
"Event": "CHAR_RESTORE_COMPLETE",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_COMBAT_MSG_ARENA_POINTS_GAIN",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_ACHIEVEMENT",
"Description": "Fires when a nearby character earns an achievement"
},
{
"Event": "CHAT_MSG_ADDON",
"Description": "Fires when an addon communication message is received (see [[docs/api/SendAddonMessage|`SendAddonMessage()`]])"
},
{
"Event": "CHAT_MSG_AFK",
"Description": "Fires when an automatic AFK response is received"
},
{
"Event": "CHAT_MSG_BG_SYSTEM_ALLIANCE",
"Description": "Fires when an Alliance-related battleground system message is received"
},
{
"Event": "CHAT_MSG_BG_SYSTEM_HORDE",
"Description": "Fires when a Horde-related battleground system message is received"
},
{
"Event": "CHAT_MSG_BG_SYSTEM_NEUTRAL",
"Description": "Fires when a general battleground, zone or world message is received"
},
{
"Event": "CHAT_MSG_BN_CONVERSATION",
"Description": "Fires when you type a message in chat or when you recive a message from another player using Battle.Net"
},
{
"Event": "CHAT_MSG_BN_CONVERSATION_LIST",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_BN_CONVERSATION_NOTICE",
"Description": "Fires when you join a conversation channel (private channel for you and your friends) on Battle.Net"
},
{
"Event": "CHAT_MSG_BN_INLINE_TOAST_ALERT",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_BN_INLINE_TOAST_BROADCAST",
"Description": "Fires whenever a user changes their broadcast message on Battle.Net"
},
{
"Event": "CHAT_MSG_BN_INLINE_TOAST_BROADCAST_INFORM",
"Description": "Fires when the player sends a new broadcast (online message)"
},
{
"Event": "CHAT_MSG_BN_INLINE_TOAST_CONVERSATION",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_BN_WHISPER",
"Description": "Fires when you receive a whisper though Battle.net"
},
{
"Event": "CHAT_MSG_BN_WHISPER_INFORM",
"Description": "Fires when you send a whisper though Battle.net (arguments are similar to `CHAT_MSG_BN_WHISPER`)"
},
{
"Event": "CHAT_MSG_BN_WHISPER_PLAYER_OFFLINE",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_CHANNEL",
"Description": "Fires when a message is received in a world or custom chat channel"
},
{
"Event": "CHAT_MSG_CHANNEL_JOIN",
"Description": "Fires when another character joins a world or custom chat channel monitored by the player"
},
{
"Event": "CHAT_MSG_CHANNEL_LEAVE",
"Description": "Fires when another character leaves a world or custom chat channel monitored by the player"
},
{
"Event": "CHAT_MSG_CHANNEL_LIST",
"Description": "Fires in response to a channel list query (e.g. `/chatlist`)"
},
{
"Event": "CHAT_MSG_CHANNEL_NOTICE",
"Description": "Fires when certain actions happen on a world or custom chat channel"
},
{
"Event": "CHAT_MSG_CHANNEL_NOTICE_USER",
"Description": "Fires when certain actions pertaining to specific members happen on a world or custom chat channel"
},
{
"Event": "CHAT_MSG_COMBAT_FACTION_CHANGE",
"Description": "Fires when the player gains or loses reputation with a faction"
},
{
"Event": "CHAT_MSG_COMBAT_GUILD_XP_GAIN",
"Description": "Fires when a guild experience gain message appears in chat"
},
{
"Event": "CHAT_MSG_COMBAT_HONOR_GAIN",
"Description": "Fires when the player gains honor points"
},
{
"Event": "CHAT_MSG_COMBAT_MISC_INFO",
"Description": "Fires for miscellaneous messages to be displayed in the combat log, such as loss of equipment durability upon death"
},
{
"Event": "CHAT_MSG_COMBAT_XP_GAIN",
"Description": "Fires when the player gains experience points"
},
{
"Event": "CHAT_MSG_CURRENCY",
"Description": "Fires when the player receives a currency"
},
{
"Event": "CHAT_MSG_DND",
"Description": "Fires when an automatic DND response is received"
},
{
"Event": "CHAT_MSG_EMOTE",
"Description": "Fires when a custom emote message is received."
},
{
"Event": "CHAT_MSG_FILTERED",
"Description": "Fires when the player attempts to send a chat message which is blocked by the spam filter"
},
{
"Event": "CHAT_MSG_GUILD",
"Description": "Fires when a message is received in the guild chat channel"
},
{
"Event": "CHAT_MSG_GUILD_ACHIEVEMENT",
"Description": "Fires when a member of the player's guild earns an achievement"
},
{
"Event": "CHAT_MSG_IGNORED",
"Description": "Fires when an automatic response is received after whispering or inviting a character who is ignoring the player"
},
{
"Event": "CHAT_MSG_INSTANCE_CHAT",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_INSTANCE_CHAT_LEADER",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_LOOT",
"Description": "Fires when receiving notice that the player or a member of the player's group has looted an item"
},
{
"Event": "CHAT_MSG_MONEY",
"Description": "Fires when the player receives money as loot"
},
{
"Event": "CHAT_MSG_MONSTER_EMOTE",
"Description": "Fires when a nearby NPC performs emote text"
},
{
"Event": "CHAT_MSG_MONSTER_PARTY",
"Description": "Fires when an NPC speaks to the player's party chat channel"
},
{
"Event": "CHAT_MSG_MONSTER_SAY",
"Description": "Fires when a nearby NPC speaks (visible only to players in the immediate area)"
},
{
"Event": "CHAT_MSG_MONSTER_WHISPER",
"Description": "Fires when an NPC whispers to the player"
},
{
"Event": "CHAT_MSG_MONSTER_YELL",
"Description": "Fires when an NPC yells (visible to players in a wide area or the entire zone)"
},
{
"Event": "CHAT_MSG_OFFICER",
"Description": "Fires when a message is received in officer chat."
},
{
"Event": "CHAT_MSG_OPENING",
"Description": "Fires for messages about the player \"opening\" a world object"
},
{
"Event": "CHAT_MSG_PARTY",
"Description": "Fires when a message is received in the party chat channel"
},
{
"Event": "CHAT_MSG_PARTY_LEADER",
"Description": "Fires when a Party Leader types in chat"
},
{
"Event": "CHAT_MSG_PET_BATTLE_COMBAT_LOG",
"Description": "Fires during combat in pet battles."
},
{
"Event": "CHAT_MSG_PET_BATTLE_INFO",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_MSG_PET_INFO",
"Description": "Fires for pet-related messages normally displayed in the combat log (e.g. summoning or dismissing a pet)"
},
{
"Event": "CHAT_MSG_RAID",
"Description": "Fires when a message is received in the raid chat channel"
},
{
"Event": "CHAT_MSG_RAID_BOSS_EMOTE",
"Description": "Fires when a raid boss performs emote text"
},
{
"Event": "CHAT_MSG_RAID_BOSS_WHISPER",
"Description": "Fires when a raid boss whispers to the player"
},
{
"Event": "CHAT_MSG_RAID_LEADER",
"Description": "Fires when a message is received in the raid chat channel from the raid leader"
},
{
"Event": "CHAT_MSG_RAID_WARNING",
"Description": "Fires when a raid warning message is received"
},
{
"Event": "CHAT_MSG_RESTRICTED",
"Description": "Fires when the player attempts to send a chat message which is disallowed because the player is on a trial account"
},
{
"Event": "CHAT_MSG_SAY",
"Description": "Fires when the player or a nearby character speaks (visible to other nearby characters)"
},
{
"Event": "CHAT_MSG_SKILL",
"Description": "Fires when skill related messages are received."
},
{
"Event": "CHAT_MSG_SYSTEM",
"Description": "Fires when a system message is received"
},
{
"Event": "CHAT_MSG_TARGETICONS",
"Description": "Fires when a target icon message is sent in chat."
},
{
"Event": "CHAT_MSG_TEXT_EMOTE",
"Description": "Fires when the player receives a standard emote (e.g. `/dance`, `/flirt`) message"
},
{
"Event": "CHAT_MSG_TRADESKILLS",
"Description": "Fires when the player or a nearby character performs a trade skill recipe"
},
{
"Event": "CHAT_MSG_WHISPER",
"Description": "Fires when the player receives a whisper from a player character"
},
{
"Event": "CHAT_MSG_WHISPER_INFORM",
"Description": "Fires when the player sends a whisper to a player character"
},
{
"Event": "CHAT_MSG_YELL",
"Description": "Fires when the player or another player character yells (visible to other characters in a wide area) "
},
{
"Event": "CHAT_SERVER_DISCONNECTED",
"Description": "This event is not yet documented"
},
{
"Event": "CHAT_SERVER_RECONNECTED",
"Description": "This event is not yet documented"
},
{
"Event": "CINEMATIC_START",
"Description": "Fires when an in-game-engine cinematic begins to play"
},
{
"Event": "CINEMATIC_STOP",
"Description": "Fires when an in-game-engine cinematic stops playing"
},
{
"Event": "CLEAR_BOSS_EMOTES",
"Description": "This event is not yet documented"
},
{
"Event": "CLEAVE_UPDATE",
"Description": "This event is not yet documented"
},
{
"Event": "CLIENT_ACCOUNT_MISMATCH",
"Description": "This event is not yet documented"
},
{
"Event": "CLIENT_CONVERTED",
"Description": "This event is not yet documented"
},
{
"Event": "CLIENT_TRIAL",
"Description": "This event is not yet documented"
},
{
"Event": "CLOSE_INBOX_ITEM",
"Description": "Fires when the mail message being viewed is no longer available"
},
{
"Event": "CLOSE_STATUS_DIALOG",
"Description": "This event is not yet documented"
},
{
"Event": "CLOSE_TABARD_FRAME",
"Description": "Fires when the player ends interaction with a tabard designer"
},
{
"Event": "CLOSE_WORLD_MAP",
"Description": "Fires when the world map should be hidden in response to external conditions"
},
{
"Event": "COMBAT_LOG_EVENT",
"Description": "Fires when an event to be displayed in the combat log is received"
},
{
"Event": "COMBAT_LOG_EVENT_UNFILTERED",
"Description": "Fires when a combat log event is received"
},
{
"Event": "COMBAT_RATING_UPDATE",
"Description": "Fires when the player's combat rating statistics change"