-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSlackwise.lua
749 lines (690 loc) · 33.5 KB
/
Slackwise.lua
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
-- These are my personal configs.
-- They only load for me, so don't worry about 'em.
-- Change implicit global scope to our addon "namespace":
setfenv(1, _G.SlackUI)
-- if not isSlackwise() then
-- -- Cancel loading the rest of the file:
-- return -- Does not impact loading subsequent files, though!
-- end
MOUNTS_BY_USAGE = {
DEFAULT = {
['GROUND'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING'] = MOUNT_IDS["Ashes of Al'ar"],
['WATER'] = MOUNT_IDS["Sea Turtle"],
['GROUND_PASSENGER'] = MOUNT_IDS["Algarian Stormrider"],
['FLYING_PASSENGER'] = MOUNT_IDS["Algarian Stormrider"],
['GROUND_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
},
HUNTER = {
['GROUND'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING'] = MOUNT_IDS["Ashes of Al'ar"],
['WATER'] = MOUNT_IDS["Sea Turtle"],
['GROUND_PASSENGER'] = MOUNT_IDS["Mekgineer's Chopper"],
['FLYING_PASSENGER'] = MOUNT_IDS["Renewed Proto-Drake"],
['GROUND_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
},
PALADIN = {
['GROUND'] = MOUNT_IDS["Highlord's Golden Charger"],
['FLYING'] = MOUNT_IDS["Chaos-Forged Gryphon"],
['WATER'] = MOUNT_IDS["Sea Turtle"],
['GROUND_PASSENGER'] = MOUNT_IDS["Algarian Stormrider"],
['FLYING_PASSENGER'] = MOUNT_IDS["Algarian Stormrider"],
['GROUND_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
},
SHAMAN = {
['GROUND'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING'] = MOUNT_IDS["Ashes of Al'ar"],
['WATER'] = MOUNT_IDS["Sea Turtle"],
['GROUND_PASSENGER'] = MOUNT_IDS["Algarian Stormrider"],
['FLYING_PASSENGER'] = MOUNT_IDS["Algarian Stormrider"],
['GROUND_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
},
PRIEST = {
['GROUND'] = MOUNT_IDS["Celestial Steed"],
['FLYING'] = MOUNT_IDS["Celestial Steed"],
['WATER'] = MOUNT_IDS["Sea Turtle"],
['GROUND_PASSENGER'] = MOUNT_IDS["Celestial Steed"],
['FLYING_PASSENGER'] = MOUNT_IDS["Celestial Steed"],
['GROUND_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
},
MAGE = {
['GROUND'] = MOUNT_IDS["Celestial Steed"],
['FLYING'] = MOUNT_IDS["Celestial Steed"],
['WATER'] = MOUNT_IDS["Sea Turtle"],
['GROUND_PASSENGER'] = MOUNT_IDS["Celestial Steed"],
['FLYING_PASSENGER'] = MOUNT_IDS["Celestial Steed"],
['GROUND_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
['FLYING_SHOWOFF'] = MOUNT_IDS["Swift Razzashi Raptor"],
},
}
BINDINGS = {
GLOBAL = {
{"ALT-CTRL-END", "command", "SLACKUI_RELOADUI"},
{"ALT-CTRL-`", "command", "FOCUSTARGET"},
{"ALT-`", "command", "INTERACTTARGET"},
{"W", "command", "MOVEFORWARD"},
{"A", "command", "STRAFELEFT"},
{"S", "command", "MOVEBACKWARD"},
{"D", "command", "STRAFERIGHT"},
{"ALT-A", "command", "TURNLEFT"},
{"ALT-D", "command", "TURNRIGHT"},
{"F1", "command", "ACTIONBUTTON1"},
{"F2", "command", "ACTIONBUTTON2"},
{"F3", "command", "ACTIONBUTTON3"},
{"F4", "command", "ACTIONBUTTON4"},
{"F5", "command", "ACTIONBUTTON5"},
{"F6", "command", "ACTIONBUTTON6"},
{"F7", "command", "ACTIONBUTTON7"},
{"F8", "command", "ACTIONBUTTON8"},
{"F9", "command", "ACTIONBUTTON9"},
{"F10", "command", "ACTIONBUTTON10"},
{"F11", "command", "ACTIONBUTTON11"},
{"F12", "command", "ACTIONBUTTON12"},
{"1", "command", "NONE"},
{"2", "command", "NONE"},
{"3", "command", "NONE"},
{"4", "command", "NONE"},
{"5", "command", "NONE"},
{"6", "command", "NONE"},
{"7", "command", "NONE"},
{"8", "command", "NONE"},
{"9", "command", "NONE"},
{"0", "command", "NONE"},
{"-", "command", "NONE"},
{"=", "command", "NONE"},
{"SHIFT-1", "command", "NONE"},
{"SHIFT-2", "command", "NONE"},
{"SHIFT-3", "command", "NONE"},
{"SHIFT-4", "command", "NONE"},
{"SHIFT-5", "command", "NONE"},
{"SHIFT-6", "command", "NONE"},
{"SHIFT-7", "command", "NONE"},
{"SHIFT-8", "command", "NONE"},
{"SHIFT-9", "command", "NONE"},
{"SHIFT-0", "command", "NONE"},
{"CTRL-1", "command", "NONE"},
{"CTRL-2", "command", "NONE"},
{"CTRL-3", "command", "NONE"},
{"CTRL-4", "command", "NONE"},
{"CTRL-5", "command", "NONE"},
{"CTRL-6", "command", "NONE"},
{"CTRL-7", "command", "NONE"},
{"CTRL-8", "command", "NONE"},
{"CTRL-9", "command", "NONE"},
{"CTRL-0", "command", "NONE"},
{",", "command", "NONE"},
{"ALT-CTRL-W", "command", "TOGGLEFOLLOW"},
{"E", "command", "INTERACTTARGET"},
{"SHIFT-E", "command", "INTERACTTARGET"},
{"CTRL-E", "command", "EXTRAACTIONBUTTON1"},
{"SHIFT-R", "command", "NONE"},
{"CTRL-R", "command", "NONE"},
{"CTRL-S", "command", "NONE"},
{"ALT-CTRL-S", "spell", "Survey" },
{"H", "command", "TOGGLEGROUPFINDER"},
{"SHIFT-H", "command", "TOGGLECHARACTER4"}, -- Honor Panel (PvP Queue)
{"CTRL-H", "macro", "HEARTH"},
{"ALT-CTRL-H", "macro", "HEARTH_DALARAN"},
{"ALT-H", "command", "TOGGLEUI"},
{"ALT-CTRL-L", "command", "TOGGLEACTIONBARLOCK"},
{"X", "command", "SITORSTAND"},
{"SHIFT-X", "macro", "MOUNT_BEAR"},
{"CTRL-SHIFT-X", "macro", "MOUNT_DINO"},
{"ALT-X", "command", "SITORSTAND"},
{"ALT-CTRL-X", "command", "TOGGLERUN"},
{"ALT-CTRL-SHIFT-X", "spell", "Switch Flight Style" },
{"ALT-CTRL-SHIFT-M", "spell", "Switch Flight Style" },
{"ALT-C", "command", "SLACKUI_BEST_MANA_POTION" },
{"ALT-V", "command", "SLACKUI_BEST_HEALING_POTION" },
{"ALT-CTRL-V", "command", "SLACKUI_BEST_BANDAGE" },
{"V", "command", "NONE"},
{"SHIFT-V", "command", "NONE"},
{"CTRL-V", "command", "NONE"},
{"B", "command", "INTERACTTARGET"},
{"SHIFT-B", "command", "OPENALLBAGS"},
{"CTRL-B", "command", "TOGGLECHARACTER0"},
{"ALT-CTRL-B", "command", "SLACKUI_SETBINDINGS"},
{"ALT-B", "command", "TOGGLESHEATH"},
{"CTRL-M", "command", "TOGGLEMUSIC"},
{"ALT-M", "command", "TOGGLESOUND"},
{"ALT-CTRL-M", "command", "SLACKUI_RESTART_SOUND"},
{"SHIFT-UP", "command", "NONE"},
{"SHIFT-DOWN", "command", "NONE"},
{"SHIFT-ENTER", "command", "REPLY"},
{"CTRL-ENTER", "command", "REPLY2"},
{"SHIFT-SPACE", "command", "SLACKUI_MOUNT"},
{"SHIFT-HOME", "command", "SETVIEW1"},
{"HOME", "command", "SETVIEW2"},
{"END", "command", "SETVIEW3"},
{"PRINTSCREEN", "command", "SCREENSHOT"},
{"NUMLOCK", "command", "NONE"},
{"NUMPAD0", "command", "RAIDTARGET8"},
{"NUMPAD1", "command", "RAIDTARGET7"},
{"NUMPAD2", "command", "RAIDTARGET2"},
{"NUMPAD3", "command", "RAIDTARGET4"},
{"NUMPAD4", "command", "RAIDTARGET6"},
{"NUMPAD5", "command", "RAIDTARGET5"},
{"NUMPAD6", "command", "RAIDTARGET1"},
{"NUMPAD7", "command", "RAIDTARGET3"},
{"NUMPADDECIMAL", "command", "RAIDTARGETNONE"},
{"BUTTON3", "command", "TOGGLEAUTORUN"},
{"ALT-BUTTON2", "command", "TOGGLEPINGLISTENER"},
{"SHIFT-MOUSEWHEELUP", "command", "NONE"},
{"SHIFT-MOUSEWHEELDOWN", "command", "NONE"}
},
RETAIL = {
HUNTER = {
CLASS = {
{ "F8", "spell", "Call Pet 1" },
{ "F9", "spell", "Call Pet 2" },
{ "F10", "spell", "Call Pet 3" },
{ "F11", "spell", "Call Pet 4" },
{ "F12", "spell", "Call Pet 5" },
{ "`", "macro", "." },
{ "1", "spell", "Explosive Shot" },
{ "2", "spell", "Hunter's Mark" },
{ "ALT-1", "macro", "MD" },
{ "3", "spell", "Multi-Shot" },
{ "SHIFT-3", "spell", "Explosive Shot" },
{ "4", "spell", "Arcane Shot" },
{ "Q", "macro", "PetControl" },
{ "CTRL-Q", "command", "BONUSACTIONBUTTON7" }, -- Pet Family Ability
{ "CTRL-SHIFT-Q", "command", "BONUSACTIONBUTTON1" }, -- Pet Family Ability
{ "ALT-CTRL-Q", "macro", "PetToggle" },
{ "ALT-SHIFT-Q", "spell", "Play Dead" },
{ "ALT-CTRL-SHIFT-Q", "spell", "Eyes of the Beast" },
{ "SHIFT-E", "spell", "Bursting Shot" },
{ "ALT-CTRL-E", "macro", "ChainEagle" },
{ "T", "macro", "Traps" },
{ "F", "spell", "Concussive Shot" },
{ "SHIFT-F", "spell", "Counter Shot" },
{ "CTRL-F", "spell", "Intimidation" },
{ "ALT-F", "spell", "Tranquilizing Shot" },
{ "ALT-CTRL-F", "spell", "Scare Beast" },
{ "ALT-CTRL-SHIFT-F", "spell", "Fireworks" },
{ "Z", "spell", "Aspect of the Cheetah" },
{ "SHIFT-Z", "spell", "Camouflage" },
{ "ALT-SHIFT-Z", "spell", "Aspect of the Chameleon" },
-- { "ALT-Z", "item", "Potion of the Hidden Spirit" },
-- { "ALT-C", "item", "Potion of the Psychopomp's Speed" },
-- { "ALT-CTRL-C", "macro", "CallFocus" },
{ "CTRL-Z", "spell", "Feign Death" },
{ "CTRL-SHIFT-Z", "macro", "Shadowmeld" },
{ "C", "spell", "" },
{ "SHIFT-C", "spell", "" },
{ "CTRL-C", "macro", "" },
-- { "CTRL-SHIFT-C", "item", "Gladiator's Medallion" },
{ "B", "spell", "Fetch" },
{ "V", "spell", "Exhilaration" },
{ "SHIFT-V", "spell", "Survival of the Fittest" },
{ "CTRL-V", "spell", "Aspect of the Turtle" },
-- { "CTRL-SHIFT-V", "item", "Wildercloth Bandage" },
-- { "ALT-V", "macro", "Vitality" },
-- { "ALT-CTRL-V", "macro", "SurviveFocus" },
{ "CTRL-SPACE", "spell", "Disengage" },
{ "BUTTON4", "macro", "TrapsCursor" },
{ "BUTTON5", "macro", "PetAttackCursor" },
},
MARKSMANSHIP = {
{ "SHIFT-2", "spell", "Aimed Shot" },
{ "CTRL-3", "spell", "Barrage" },
{ "ALT-3", "spell", "Salvo" },
{ "SHIFT-4", "spell", "Aimed Shot" }, -- Procs as INSTANT so on same key as Arcane
{ "5", "spell", "Kill Shot" },
{ "SHIFT-5", "spell", "Sniper Shot" },
{ "R", "spell", "Steady Shot" },
{ "SHIFT-R", "spell", "Rapid Fire" },
{ "G", "macro", "Trueshot!" },
},
SURVIVAL = {
{ "1", "macro", "Serpent Sting" },
{ "2", "spell", "Kill Command" },
{ "4", "spell", "Shrapnel Bomb" },
{ "5", "spell", "Kill Shot" },
{ "E", "spell", "Raptor Strike" },
{ "SHIFT-E", "spell", "Butchery" },
{ "R", "spell", "Harpoon" },
{ "F", "spell", "Wing Clip" }, --Auto-maps to "Concussive Shot" in MM spec
}
},
PALADIN = {
CLASS = {
{ "1", "command", "ACTIONBUTTON1" },
{ "2", "command", "ACTIONBUTTON2" },
{ "3", "command", "ACTIONBUTTON3" },
{ "4", "command", "ACTIONBUTTON4" },
{ "5", "command", "ACTIONBUTTON5" },
{ "6", "command", "ACTIONBUTTON6" },
{ "7", "command", "ACTIONBUTTON7" },
{ "8", "command", "ACTIONBUTTON8" },
{ "9", "command", "ACTIONBUTTON9" },
{ "10", "command", "ACTIONBUTTON10" },
{ "11", "command", "ACTIONBUTTON11" },
{ "12", "command", "ACTIONBUTTON12" },
---------------------------------------------------
-- General
{ "F8", "macro", "SUMMONPET" },
{ "F9", "command", "SHAPESHIFTBUTTON1" },
{ "F10", "command", "SHAPESHIFTBUTTON2" },
{ "F11", "command", "SHAPESHIFTBUTTON3" },
{ "F12", "command", "SHAPESHIFTBUTTON4" },
{ "CTRL-SPACE", "spell", "Divine Steed" },
{ "BUTTON4", "macro", "MOUSE4" },
{ "BUTTON5", "macro", "MOUSE5" },
{ "ALT-CTRL-SHIFT-X", "spell", "Contemplation" },
-- Quick Heals
{ "1", "spell", "Word of Glory" },
{ "CTRL-1", "spell", "Lay on Hands" },
-- Cast Heals
{ "2", "spell", "Flash of Light" },
-- Ranged Attacks
{ "4", "spell", "Judgment" },
{ "5", "spell", "Hammer of Wrath" },
---------------------------------------------------
-- Shield (Tanking)
{ "Q", "spell", "Shield of the Righteous" },
{ "ALT-Q", "spell", "Hand of Reckoning" },
-- Sword
{ "E", "spell", "Crusader Strike" },
-- Targetting
-- { "T", "spell", "Hand of Reckoning" },
-- { "T", "macro", "TARGET" },
{ "T", "macro", "BLESST" },
---------------------------------------------------
-- CC
{ "F", "spell", "Rebuke" },
{ "SHIFT-F", "spell", "Hammer of Justice" },
{ "CTRL-F", "spell", "Repentance" },
-- Ultimates (Big Cooldowns)
{ "G", "macro", "WINGS" },
-- Extras
{ "Z", "macro", "FREEDOM" },
{ "SHIFT-Z", "spell", "Will to Survive" },
{ "ALT-Z", "macro", "PVP_TRINKET" },
{ "ALT-CTRL-Z", "macro", "REZ" },
-- AoE (emanating from me)
{ "C", "spell", "Consecration" },
{ "SHIFT-C", "spell", "Divine Toll" },
-- Vitality (Self-Heals/Protections)
{ "V", "macro", "VITALITY" },
{ "SHIFT-V", "spell", "Divine Shield" },
{ "CTRL-SHIFT-V","macro", "BOP_SELF" },
{ "CTRL-V", "macro", "LAY_SELF" },
},
HOLY = {
-- Quick Heals
{ "`", "spell", "Barrier of Faith" },
{ "SHIFT-1", "spell", "Cleanse" },
-- Cast Heals
{ "SHIFT-2", "spell", "Holy Light" },
-- { "2", "spell", "Holy Light" },
-- { "SHIFT-2", "spell", "Flash of Light" },
-- AoE Heals
{ "3", "spell", "Light of Dawn" },
-- { "SHIFT-3", "spell", "Holy Prism" },
-- { "3", "spell", "Holy Prism" },
-- { "SHIFT-3", "spell", "Light of Dawn" },
---------------------------------------------------
-- Spec Abilities
{ "R", "macro", "SHOCK" },
{ "SHIFT-R", "spell", "Barrier of Faith" },
-- Targetting
-- { "SHIFT-T", "spell", "Beacon of Faith" },
-- { "CTRL-T", "spell", "Beacon of Light" },
---------------------------------------------------
-- Ults (Big Cooldowns)
{ "SHIFT-G", "spell", "Aura Mastery" },
-- Extras
{ "ALT-CTRL-SHIFT-Z", "spell", "Absolution" },
-- CC
{ "CTRL-F", "spell", "Blinding Light" },
-- AoE (emanating from me)
{ "C", "spell", "Consecration" },
{ "CTRL-C", "macro", "BEACON_SELF" },
-- { "CTRL-C", "spell", "Tyr's Deliverance" },
},
PROTECTION = {
-- Quick Heals
{ "SHIFT-1", "spell", "Cleanse Toxins" },
---------------------------------------------------
-- Shield
{ "SHIFT-Q", "spell", "Bastion of Light" },
-- Attacks
{ "3", "spell", "Avenger's Shield" },
{ "R", "spell", "Holy Bulwark" },
-- Taunting
{ "T", "spell", "Hand of Reckoning" },
---------------------------------------------------
-- Blessings
-- AoE (emanating from me)
{ "CTRL-C", "spell", "Eye of Tyr" },
},
RETRIBUTION = {
-- Heals
{ "SHIFT-1", "spell", "Cleanse Toxins" },
-- AoE Frontal
{ "3", "spell", "Wake of Ashes" },
---------------------------------------------------
-- Sword
{ "Q", "macro", "Q" },
{ "SHIFT-Q", "spell", "Templar's Verdict" },
{ "R", "spell", "Blade of Justice" },
-- Targetting
---------------------------------------------------
-- Blessings
{ "CTRL-Z", "macro", "SANC_SELF" },
-- AoE (emanating from me)
{ "C", "spell", "Divine Storm" },
{ "CTRL-C", "macro", "RECKON_SELF" },
},
},
DRUID = {
CLASS = {
{"BUTTON4", "macro", "MOUSE4"},
{"SHIFT-SPACE", "macro", "TRAVEL"}, -- Travel Form, but only out of combat, otherwise Mount Form
{"CTRL-SPACE", "spell", "Wild Charge"},
{"CTRL-SHIFT-SPACE", "command", "SLACKUI_MOUNT"},
{"CTRL-H", "spell", "Noble Gardener's Hearthstone"},
{"SHIFT-H", "spell", "Dreamwalk"},
{"1", "spell", "Rejuvenation"},
{"1", "spell", "Rejuvenation"},
{"SHIFT-1", "spell", "Rejuvenation"},
{"2", "spell", "Regrowth"},
{"SHIFT-2", "spell", "Wild Growth"},
{"3", "spell", "Sunfire"},
{"SHIFT-3", "spell", "Starfire"},
{"4", "spell", "Moonfire"},
{"SHIFT-4", "spell", "Wrath"},
{"CTRL-4", "spell", "Starsurge"},
{"Q", "spell", "Ferocious Bite"},
{"E", "macro", "SINGLE_TARGET"},
{"SHIFT-E", "spell", "Shred"},
{"CTRL-E", "spell", "Mangle"},
{"ALT-E", "spell", "Wrath"},
{"R", "macro", "AOE"},
{"SHIFT-R", "spell", "Swipe"},
{"CTRL-R", "spell", ""},
{"ALT-R", "spell", "Starfire"},
{"T", "macro", "T"}, -- Taunt or Cleanse
{"F", "macro", "INTERRUPT"},
{"SHIFT-F", "spell", "Entangling Roots"},
{"CTRL-F", "spell", "Incapacitating Roar"},
{"ALT-CTRL-F", "spell", "Mass Entanglement"},
{"CTRL-G", "macro", "ULT"},
{"Z", "spell", "Dash"},
{"SHIFT-Z", "spell", "Stampeding Roar"},
{"CTRL-Z", "spell", "Shadowmeld"},
{"ALT-CTRL-Z", "macro", "REZ"},
{"X", "macro", "X"},
{"C", "macro", "CAT"},
{"SHIFT-C", "spell", "Prowl"},
{"V", "macro", "BEAR"}, -- Switch to Bear or cast "Frenzied Regeneration"
{"SHIFT-V", "spell", "Barkskin"},
{"CTRL-V", "spell", "Renewal"},
},
BALANCE = {
{"CTRL-3", "spell", "Starfall"},
{"5", "spell", "Fury of Elune"},
{"SHIFT-5", "spell", "Wild Mushroom"},
{"X", "macro", "X"}, -- Switch to Moonkin or cast "Flap"
{"G", "spell", "Celestial Alignment"}, -- Also maps to Incarnation as that replaces Celestial Alignment
{"SHIFT-G", "spell", "Celestial Alignment"},
},
FERAL = {
},
GUARDIAN = {
},
RESTORATION = {
{"`", "spell", "Swiftmend"},
{"SHIFT-1", "spell", "Lifebloom"},
{"G", "spell", "Grove Guardians"},
{"SHIFT-G", "spell", "Flourish"},
{"CTRL-G", "spell", "Incarnation: Tree of Life"},
{"ALT-CTRL-G", "spell", "Tranquility"},
{"ALT-CTRL-V", "spell", "Tranquility"},
}
},
MAGE = {
CLASS = {
{"E", "spell", "Frostbolt"},
{"R", "spell", "Cone of Cold"},
{"T", "spell", "Fire Blast"},
{"F", "spell", "Frost Nova"},
{"SHIFT-F", "spell", "Counterspell"},
{"CTRL-F", "spell", "Polymorph"},
{"Z", "spell", "Invisibility"},
{"X", "spell", "Slow Fall"},
{"C", "spell", "Arcane Explosion"},
{"SHIFT-V", "spell", "Ice Cold"},
{"CTRL-V", "spell", "Mass Barrier"},
{"CTRL-SPACE", "spell", "Blink"},
{"ALT-CTRL-Z", "spell", "Shadowmeld"},
},
ARCANE = {},
FIRE = {},
FROST = {
{"BUTTON4", "macro", "BLIZZ_CURSOR"},
{"3", "spell", "Comet Storm"},
{"4", "spell", "Ice Lance"},
{"5", "spell", "Flurry"},
{"Q", "spell", "Frozen Orb"},
{"V", "spell", "Ice Barrier"},
},
},
SHAMAN = {
CLASS = {
{"`", "spell", "Gift of the Naaru"},
{"1", "spell", "Flame Shock"},
{"2", "spell", "Healing Surge"},
{"SHIFT-2", "spell", "Healing Surge"},
{"3", "spell", "Earth Shock"},
{"4", "spell", "Frost Shock"},
{"5", "spell", "Primordial Wave"},
{"Q", "macro", "CHAIN"},
{"E", "spell", "Lightning Bolt"},
{"ALT-E", "spell", "Primal Strike"},
{"R", "spell", "Lava Burst"},
{"SHIFT-R", "spell", "Lightning Shield"},
{"CTRL-R", "spell", "Water Shield"},
{"T", "spell", "Healing Stream Totem"},
{"ALT-T", "spell", "Healing Tide Totem"},
{"SHIFT-T", "spell", "Spirit Link Totem"},
{"CTRL-T", "spell", "Earthbind Totem"},
{"F", "spell", "Wind Shear"},
{"SHIFT-F", "spell", "Wind Shear"},
{"CTRL-F", "spell", "Hex"},
{"G", "spell", "Spiritwalker's Grace"},
{"SHIFT-G", "spell", "Ancestral Guidance"},
{"CTRL-G", "spell", "Ascendance"},
{"SHIFT-CTRL-G", "spell", "Heroism"},
{"Z", "spell", "Ghost Wolf"},
{"SHIFT-Z", "spell", "Wind Rush Totem"},
{"C", "spell", "Thunderstorm"},
{"SHIFT-C", "macro", "RAIN_SELF"},
{"V", "spell", "Astral Shift"},
{"CTRL-C", "spell", "Stone Bulwark Totem"},
{"CTRL-SPACE", "spell", "Gust of Wind"},
{"ALT-CTRL-Z", "spell", "Ancestral Spirit"},
},
ELEMENTAL = {
{"BUTTON4", "macro", "MOUSE4_ELE"},
},
ENHANCEMENT = {},
RESTORATION = {
{"BUTTON4", "macro", "MOUSE4_RESTO"},
{"1", "spell", "Riptide"},
{"ALT-1", "spell", "Purify Spirit"},
{"SHIFT-2", "spell", "Healing Wave"},
},
},
PRIEST = {
CLASS = {
{"1", "spell", "Renew"},
{"1", "spell", "Holy Word: Serenity"},
{"2", "spell", "Flash Heal"},
{"3", "spell", "Divine Star"},
{"SHIFT-2", "spell", "Heal"},
{"4", "spell", "Shadow Word: Pain"},
{"5", "spell", "Holy Word: Chastise"},
{"Q", "spell", ""},
{"SHIFT-Q", "spell", "Shadowfiend"},
{"R", "spell", ""},
{"E", "spell", "Smite"},
{"CTRL-E", "spell", ""},
{"R", "spell", "Holy Fire"},
{"T", "spell", "Dispel Magic"},
{"SHIFT-T", "spell", "Power Word: Fortitude"},
{"CTRL-T", "spell", "Power Word: Shield"},
{"F", "macro", "SOOTHE_SELF"},
{"SHIFT-F", "spell", "Psychic Scream"},
{"CTRL-F", "spell", "Dominate Mind"},
{"ALT-CTRL-F", "spell", "Mind Vision"},
{"G", "macro", "ULT"},
{"SHIFT-G", "spell", "Power Infusion"},
{"CTRL-SHIFT-G", "spell", "Symbol of Hope"},
{"Z", "macro", "FEATHER_SELF"},
{"SHIFT-Z", "spell", "Fade"},
{"CTRL-Z", "spell", "Shadowmeld"},
{"ALT-CTRL-Z", "macro", "REZ"},
{"X", "macro", "LEVITATE_SELF"},
{"C", "spell", "Holy Nova"},
{"SHIFT-C", "spell", ""},
{"CTRL-C", "spell", "Halo"},
{"V", "spell", "Desperate Prayer"},
{"SHIFT-V", "spell", "Fade"},
{"CTRL-V", "macro", "GUARD_SELF"},
{"CTRL-SPACE", "spell", "Leap of Faith"},
{"BUTTON4", "macro", "MOUSE4"},
-- {"BUTTON4", "macro", "SANCTIFY_CURSOR"},
-- {"SHIFT-BUTTON4", "macro", "FEATHER_CURSOR"},
-- {"CTRL-BUTTON4", "macro", "SOOTHE_CURSOR"},
},
DISCIPLINE = {
},
HOLY = {
},
SHADOW = {
}
},
WARRIOR = {
CLASS = {
{"`", "spell", ""},
{"1", "spell", ""},
{"2", "spell", ""},
{"4", "spell", "Heroic Throw"},
{"5", "spell", "Champion's Spear"},
{"SHIFT-2", "spell", ""},
{"Q", "spell", "Shield Slam"},
{"SHIFT-Q", "spell", "Shield Block"},
{"CTRL-Q", "spell", "Shield Charge"},
{"R", "spell", ""},
{"E", "spell", "Hamstring"},
{"R", "spell", "Whirlwind"},
{"T", "spell", "Taunt"},
{"F", "spell", "Pummel"},
{"G", "spell", "Avatar"},
{"SHIFT-F", "spell", "Storm Bolt"},
{"CTRL-F", "spell", ""},
{"Z", "spell", "Charge"},
{"SHIFT-Z", "spell", "Shield Charge"},
{"ALT-CTRL-Z", "spell", "Shadowmeld"},
{"X", "spell", ""},
{"C", "spell", "Thunder Clap"},
{"SHIFT-V", "spell", ""},
{"CTRL-V", "spell", ""},
{"CTRL-SPACE", "spell", "Heroic Leap"},
},
ARMS = {
},
FURY = {
},
PROTECTION = {
{"V", "spell", "Shield Wall"},
}
}
},
CLASSIC = {
PALADIN = {
{ "1", "command", "ACTIONBUTTON1" },
{ "2", "command", "ACTIONBUTTON2" },
{ "3", "command", "ACTIONBUTTON3" },
{ "4", "command", "ACTIONBUTTON4" },
{ "5", "command", "ACTIONBUTTON5" },
{ "6", "command", "ACTIONBUTTON6" },
{ "7", "command", "ACTIONBUTTON7" },
{ "8", "command", "ACTIONBUTTON8" },
{ "9", "command", "ACTIONBUTTON9" },
{ "10", "command", "ACTIONBUTTON10" },
{ "11", "command", "ACTIONBUTTON11" },
{ "12", "command", "ACTIONBUTTON12" },
---------------------------------------------------
-- General
{ "E", "macro", "!ENGAGE" }, -- Crusader Strike
{ "F9", "command", "SHAPESHIFTBUTTON1" },
{ "F10", "command", "SHAPESHIFTBUTTON2" },
{ "F11", "command", "SHAPESHIFTBUTTON3" },
{ "F12", "command", "SHAPESHIFTBUTTON4" },
{ "`", "macro", "!STOP" },
{ "BUTTON4", "macro", "MOUSE4" },
{ "BUTTON5", "macro", "MOUSE5" },
-- Core
{ "Z", "spell", "Divine Protection" },
{ "ALT-Z", "spell", "Perception" },
-- Main Attacks and Runes?
{ "4", "spell", "Judgement" },
{ "5", "spell", "Hammer of Wrath" },
{ "C", "spell", "Consecration" },
{ "SHIFT-C", "spell", "Divine Storm" },
-- Heals (Coming from left hand?)
{ "3", "spell", "Divine Storm"}, -- AoE Heal
{ "Q", "spell", "Holy Light"}, -- Instant Attack (Holy Shock macro @ Enemy only)
{ "ALT-Q", "spell", "Purify" }, -- Cleanse later
{ "CTRL-Z", "spell", "Redemption" },
-- "OHSHIT" Buttons
{ "G", "spell", "Blessing of Protection" },
{ "SHIFT-G", "spell", "Lay on Hands" },
-- CC
{ "F", "spell", "Rebuke"},
{ "SHIFT-F", "spell", "Hammer of Justice" },
-- Blessings
{ "T", "spell", "Blessing of Might" },
{ "SHIFT-T", "spell", "Blessing of Wisdom" },
-- Seals & Judgement
{ "R", "spell", "Seal of Righteousness" },
{ "SHIFT-R", "spell", "Seal of the Crusader" },
-- Items
{ "ALT-Z", "item", "Insignia of the Alliance" }, -- PvP Trinket
},
PRIEST = {
{ "1", "command", "ACTIONBUTTON1" },
{ "2", "command", "ACTIONBUTTON2" },
{ "3", "command", "ACTIONBUTTON3" },
{ "4", "command", "ACTIONBUTTON4" },
{ "5", "command", "ACTIONBUTTON5" },
{ "6", "command", "ACTIONBUTTON6" },
{ "7", "command", "ACTIONBUTTON7" },
{ "8", "command", "ACTIONBUTTON8" },
{ "9", "command", "ACTIONBUTTON9" },
{ "10", "command", "ACTIONBUTTON10" },
{ "11", "command", "ACTIONBUTTON11" },
{ "12", "command", "ACTIONBUTTON12" },
{ "`", "macro", "!STOP" },
{ "1", "spell", "Renew" },
{ "2", "spell", "Lesser Heal" },
{ "4", "spell", "Shadow Word: Pain" },
-- { "5", "spell", "Penance" },
{ "Q", "spell", "Power Word: Shield" },
{ "E", "macro", "!ENGAGE" },
{ "T", "spell", "Power Word: Fortitude" },
{ "Z", "spell", "Fade" },
{ "SHIFT-Z", "spell", "Shadowmeld" },
{ "CTRL-Z", "spell", "Fade" },
{ "V", "macro", "SHIELD_SELF" },
}
}
}