-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCustomKeys-Dvorak-Grid.txt
9806 lines (8220 loc) · 267 KB
/
CustomKeys-Dvorak-Grid.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
[cmdrally]
Tip=(|cffffcc00U|r) Set Rally Point
Hotkey=U
[ARal]
Buttonpos=3,1
[cmdcancelbuild]
Tip=(|CFF00FF00K|r) Cancel
Hotkey=K
Buttonpos=3,2
[anei]
Tip=(|cffffcc00K|r) Select User
Hotkey=K
Buttonpos=3,2
[plcl]
Tip=(|cffffcc00,|r) Purchase Lesser Clarity Potion
Hotkey=188
Buttonpos=1,0
[dust]
Tip=(|cffffcc00P|r) Purchase Dust of Appearance
Hotkey=P
Buttonpos=3,0
[phea]
Tip=(|cffffcc00A|r) Purchase Potion of Healing
Hotkey=A
Buttonpos=0,1
[pman]
Tip=(|cffffcc00O|r) Purchase Potion of Mana
Hotkey=O
Buttonpos=1,1
[stwp]
Tip=(|cffffcc00E|r) Purchase Scroll of Town Portal
Hotkey=E
Buttonpos=2,1
[shea]
Tip=(|cffffcc00Q|r) Purchase Scroll of Healing
Hotkey=Q
Buttonpos=1,2
[cmdcancel]
Tip=(|CFF00FF00K|r) Cancel
Hotkey=K
Buttonpos=3,2
[cmdselectskill]
Tip=(|cffffcc00U|r) Set Hero Ability
Hotkey=U
Buttonpos=3,1
[cmdattackground]
Tip=(|cffffcc00U|r) Attack Ground
Hotkey=U
Buttonpos=3,1
[asal]
Tip=Pillage
Buttonpos=1,2
[adsm]
Tip=(|cffffcc00;|r) Dispel Magic
Hotkey=186
Buttonpos=0,2
[acrk]
Tip=Resistant Skin
Buttonpos=3,2
[acsk]
Tip=Resistant Skin
Buttonpos=3,1
[amim]
Tip=Spell Immunity
Buttonpos=2,2
[acmi]
Tip=Spell Immunity
Buttonpos=2,2
[acd2]
Tip=(|cffffcc00Q|r) Abolish Magic
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=Q
Buttonpos=1,2
Unbuttonpos=1,2
[ashm]
Tip=(|cffffcc00E|r) Hide
Hotkey=E
Buttonpos=2,1
[ahid]
Tip=(|cffffcc00E|r) Hide
Hotkey=E
Buttonpos=2,1
[ahar]
Tip=(|cffffcc00U|r) Gather
UnTip=(|cffffcc00U|r) Return Resources
Hotkey=U
Unhotkey=U
Buttonpos=3,1
Unbuttonpos=3,1
[cmdmove]
Tip=(|cffffcc00'|r) Move
Hotkey=222
Buttonpos=0,0
[cmdstop]
Tip=(|cffffcc00,|r) Stop
Hotkey=188
Buttonpos=1,0
[cmdholdpos]
Tip=(|cffffcc00.|r) Hold Position
Hotkey=190
Buttonpos=2,0
[cmdattack]
Tip=(|cffffcc00P|r) Attack
Hotkey=P
Buttonpos=3,0
[cmdpatrol]
Tip=(|cffffcc00A|r) Patrol
Hotkey=A
Buttonpos=0,1
[slo3]
Tip=(|cffffcc00;|r) Load
Hotkey=186
Buttonpos=0,2
[sdro]
Tip=(|cffffcc00Q|r) Unload All
Hotkey=Q
Buttonpos=1,2
[hpea]
Tip=(|cffffcc00'|r) Train Peasant
Hotkey=222
Buttonpos=0,0
[rhpm]
Tip=(|cffffcc00P|r) Research Backpack
Hotkey=P
Buttonpos=3,0
[hkee]
Tip=(|cffffcc00;|r) Upgrade to Keep
Hotkey=186
Buttonpos=0,2
[amic]
Tip=(|cffffcc00Q|r) Call to Arms
UnTip=(|cffffcc00J|r) Back to Work
Hotkey=Q
Unhotkey=J
Buttonpos=1,2
Unbuttonpos=2,2
[hcas]
Tip=(|cffffcc00;|r) Upgrade to Castle
Hotkey=186
Buttonpos=0,2
[Hamg]
Tip=(|cffffcc00;|r) Summon Archmage
Revivetip=(|cffffcc00;|r) Revive Archmage
Awakentip=(|cffffcc00;|r) Awaken Archmage
Hotkey=186
Buttonpos=0,2
[Hmkg]
Tip=(|cffffcc00Q|r) Summon Mountain King
Revivetip=(|cffffcc00Q|r) Revive Mountain King
Awakentip=(|cffffcc00Q|r) Awaken Mountain King
Hotkey=Q
Buttonpos=1,2
[Hpal]
Tip=(|cffffcc00J|r) Summon Paladin
Revivetip=(|cffffcc00J|r) Revive Paladin
Awakentip=(|cffffcc00J|r) Awaken Paladin
Hotkey=J
Buttonpos=2,2
[Hblm]
Tip=(|cffffcc00A|r) Summon Blood Mage
Revivetip=(|cffffcc00A|r) Revive Blood Mage
Awakentip=(|cffffcc00A|r) Awaken Blood Mage
Hotkey=A
Buttonpos=0,1
[hfoo]
Tip=(|cffffcc00'|r) Train Footman
Hotkey=222
Buttonpos=0,0
[hrif]
Tip=(|cffffcc00,|r) Train Rifleman
Hotkey=188
Buttonpos=1,0
[hkni]
Tip=(|cffffcc00.|r) Train Knight
Hotkey=190
Buttonpos=2,0
[rhde]
Tip=(|cffffcc00;|r) Research Defend
Hotkey=186
Buttonpos=0,2
[rhri]
Tip=(|cffffcc00Q|r) Upgrade to Long Rifles
Hotkey=Q
Buttonpos=1,2
[rhan]
Tip=(|cffffcc00J|r) Research Animal War Training
Hotkey=J
Buttonpos=2,2
[hgyr]
Tip=(|cffffcc00'|r) Train Flying Machine
Hotkey=222
Buttonpos=0,0
[hmtm]
Tip=(|cffffcc00,|r) Train Mortar Team
Hotkey=188
Buttonpos=1,0
[hmtt]
Tip=(|cffffcc00.|r) Train Siege Engine
Hotkey=190
Buttonpos=2,0
[hrtt]
Tip=(|cffffcc00.|r) Train Siege Engine
Hotkey=190
Buttonpos=2,0
[rhfc]
Tip=(|cffffcc00A|r) Research Flak Cannons
Hotkey=A
Buttonpos=0,1
[rhfs]
Tip=(|cffffcc00O|r) Research Fragmentation Shards
Hotkey=O
Buttonpos=1,1
[rhgb]
Tip=(|cffffcc00;|r) Research Flying Machine Bombs
Hotkey=186
Buttonpos=0,2
[rhfl]
Tip=(|cffffcc00Q|r) Research Flare
Hotkey=Q
Buttonpos=1,2
[rhrt]
Tip=(|cffffcc00J|r) Research Barrage
Hotkey=J
Buttonpos=2,2
[hsor]
Tip=(|cffffcc00'|r) Train Sorceress
Hotkey=222
Buttonpos=0,0
[hmpr]
Tip=(|cffffcc00,|r) Train Priest
Hotkey=188
Buttonpos=1,0
[hspt]
Tip=(|cffffcc00.|r) Train Spell Breaker
Hotkey=190
Buttonpos=2,0
[rhss]
Tip=(|cffffcc00E|r) Research Control Magic
Hotkey=E
Buttonpos=2,1
[rhst]
Tip=(|cffffcc00;|r) Sorceress Adept Training,(|cffffcc00;|r) Sorceress Master Training
Hotkey=186,186
Buttonpos=0,2
[rhpt]
Tip=(|cffffcc00Q|r) Priest Adept Training,(|cffffcc00Q|r) Priest Master Training
Hotkey=Q,Q
Buttonpos=1,2
[rhse]
Tip=(|cffffcc00J|r) Research Magic Sentry
Hotkey=J
Buttonpos=2,2
[hdhw]
Tip=(|cffffcc00'|r) Train Dragon Hawk
Hotkey=222
Buttonpos=0,0
[hgry]
Tip=(|cffffcc00,|r) Train Gryphon Rider
Hotkey=188
Buttonpos=1,0
[rhcd]
Tip=(|cffffcc00;|r) Research Cloud
Hotkey=186
Buttonpos=0,2
[rhhb]
Tip=(|cffffcc00Q|r) Research Storm Hammers
Hotkey=Q
Buttonpos=1,2
[rhlh]
Tip=(|cffffcc00'|r) Improved Lumber Harvesting,(|cffffcc00'|r) Advanced Lumber Harvesting
Hotkey=222,222
Buttonpos=0,0
[rhac]
Tip=(|cffffcc00,|r) Upgrade to Improved Masonry,(|cffffcc00,|r) Upgrade to Advanced Masonry,(|cffffcc00,|r) Upgrade to Imbued Masonry
Hotkey=188,188,188
Buttonpos=1,0
[rhme]
Tip=(|cffffcc00'|r) Upgrade to Iron Forged Swords,(|cffffcc00'|r) Upgrade to Steel Forged Swords,(|cffffcc00'|r) Upgrade to Mithril Forged Swords
Hotkey=222,222,222
Buttonpos=0,0
[rhra]
Tip=(|cffffcc00,|r) Upgrade to Black Gunpowder,(|cffffcc00,|r) Upgrade Refined Gunpowder,(|cffffcc00,|r) Upgrade to Imbued Gunpowder
Hotkey=188,188,188
Buttonpos=1,0
[rhar]
Tip=(|cffffcc00A|r) Upgrade to Iron Plating,(|cffffcc00A|r) Upgrade to Steel Plating,(|cffffcc00A|r) Upgrade to Mithril Plating
Hotkey=A,A,A
Buttonpos=0,1
[rhla]
Tip=(|cffffcc00O|r) Upgrade to Studded Leather Armor,(|cffffcc00O|r) Upgrade to Reinforced Leather Armor,(|cffffcc00O|r) Upgrade to Dragonhide Armor
Hotkey=O,O,O
Buttonpos=1,1
[hgtw]
Tip=(|cffffcc00;|r) Upgrade to Guard Tower
Hotkey=186
Buttonpos=0,2
[hctw]
Tip=(|cffffcc00Q|r) Upgrade to Cannon Tower
Hotkey=Q
Buttonpos=1,2
[hatw]
Tip=(|cffffcc00J|r) Upgrade to Arcane Tower
Hotkey=J
Buttonpos=2,2
[ahta]
Tip=(|cffffcc00;|r) Reveal
Hotkey=186
Buttonpos=0,2
[adts]
Tip=Magic Sentry
Buttonpos=2,1
[afbt]
Tip=Feedback
Buttonpos=0,0
[sreg]
Tip=(|cffffcc00'|r) Purchase Scroll of Regeneration
Hotkey=222
Buttonpos=0,0
[mcri]
Tip=(|cffffcc00.|r) Purchase Mechanical Critter
Hotkey=190
Buttonpos=2,0
[tsct]
Tip=(|cffffcc00U|r) Purchase Ivory Tower
Hotkey=U
Buttonpos=3,1
[ofir]
Tip=(|cffffcc00;|r) Purchase Orb of Fire
Hotkey=186
Buttonpos=0,2
[ssan]
Tip=(|cffffcc00Q|r) Purchase Staff of Sanctuary
Hotkey=Q
Buttonpos=1,2
[cmdbuildhuman]
Tip=(|cffffcc00;|r) Build Structure
Hotkey=186
[AHbu]
Buttonpos=0,2
[ahrp]
Tip=(|cffffcc00O|r) Repair
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=O
Buttonpos=1,1
Unbuttonpos=1,1
[amil]
Tip=(|cffffcc00Q|r) Call to Arms
UnTip=(|cffffcc00J|r) Return to Work
Hotkey=Q
Unhotkey=J
Buttonpos=1,2
Unbuttonpos=2,2
[htow]
Tip=(|cffffcc00'|r) Build Town Hall
Hotkey=222
Buttonpos=0,0
[hbar]
Tip=(|cffffcc00,|r) Build Barracks
Hotkey=188
Buttonpos=1,0
[hlum]
Tip=(|cffffcc00.|r) Build Lumber Mill
Hotkey=190
Buttonpos=2,0
[hbla]
Tip=(|cffffcc00P|r) Build Blacksmith
Hotkey=P
Buttonpos=3,0
[hhou]
Tip=(|cffffcc00A|r) Build Farm
Hotkey=A
Buttonpos=0,1
[halt]
Tip=(|cffffcc00O|r) Build Altar of Kings
Hotkey=O
Buttonpos=1,1
[hars]
Tip=(|cffffcc00E|r) Build Arcane Sanctum
Hotkey=E
Buttonpos=2,1
[harm]
Tip=(|cffffcc00U|r) Build Workshop
Hotkey=U
Buttonpos=3,1
[hwtw]
Tip=(|cffffcc00;|r) Build Scout Tower
Hotkey=186
Buttonpos=0,2
[hgra]
Tip=(|cffffcc00Q|r) Build Gryphon Aviary
Hotkey=Q
Buttonpos=1,2
[hvlt]
Tip=(|cffffcc00J|r) Build Arcane Vault
Hotkey=J
Buttonpos=2,2
[adef]
Tip=(|cffffcc00;|r) Defend
UnTip=(|cffffcc00;|r) Stop Defend
Hotkey=186
Unhotkey=186
Buttonpos=0,2
Unbuttonpos=0,2
[agyv]
Tip=True Sight
Buttonpos=0,2
[agyb]
Tip=Flying Machine Bombs
Buttonpos=1,2
[aflk]
Tip=Flak Cannons
Buttonpos=2,2
[afla]
Tip=(|cffffcc00;|r) Flare
Hotkey=186
Buttonpos=0,2
[afsh]
Tip=Fragmentation Shards
Buttonpos=1,2
[aroc]
Tip=Barrage
Buttonpos=0,2
[aslo]
Tip=(|cffffcc00;|r) Slow
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=186
Buttonpos=0,2
Unbuttonpos=0,2
[aivs]
Tip=(|cffffcc00Q|r) Invisibility
Hotkey=Q
Buttonpos=1,2
[aply]
Tip=(|cffffcc00J|r) Polymorph
Hotkey=J
Buttonpos=2,2
[ahea]
Tip=(|cffffcc00;|r) Heal
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=186
Buttonpos=0,2
Unbuttonpos=0,2
[adis]
Tip=(|cffffcc00Q|r) Dispel Magic
Hotkey=Q
Buttonpos=1,2
[ainf]
Tip=(|cffffcc00J|r) Inner Fire
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=J
Buttonpos=2,2
Unbuttonpos=2,2
[asps]
Tip=(|cffffcc00;|r) Spell Steal
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=186
Buttonpos=0,2
Unbuttonpos=0,2
[acmg]
Tip=(|cffffcc00Q|r) Control Magic
Hotkey=Q
Buttonpos=1,2
[afbk]
Tip=Feedback
Buttonpos=3,2
[amls]
Tip=(|cffffcc00;|r) Aerial Shackles
Hotkey=186
Buttonpos=0,2
[aclf]
Tip=(|cffffcc00Q|r) Cloud
Hotkey=Q
Buttonpos=1,2
[asth]
Tip=Storm Hammers
Buttonpos=0,2
[ahbz]
Tip=(|cffffcc00;|r) Blizzard - [|cffffcc00Level 1|r],(|cffffcc00;|r) Blizzard - [|cffffcc00Level 2|r],(|cffffcc00;|r) Blizzard - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00'|r) Learn Blizzard - [|cffffcc00Level %d|r]
Hotkey=186
Researchhotkey=222
Buttonpos=0,2
Researchbuttonpos=0,0
[ahwe]
Tip=(|cffffcc00Q|r) Summon Water Elemental - [|cffffcc00Level 1|r],(|cffffcc00Q|r) Summon Water Elemental - [|cffffcc00Level 2|r],(|cffffcc00Q|r) Summon Water Elemental - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00,|r) Learn Summon Water Elemental - [|cffffcc00Level %d|r]
Hotkey=Q
Researchhotkey=188
Buttonpos=1,2
Researchbuttonpos=1,0
[ahab]
Tip=Brilliance Aura - [|cffffcc00Level 1|r],Brilliance Aura - [|cffffcc00Level 2|r],Brilliance Aura - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00.|r) Learn Brilliance Aura - [|cffffcc00Level %d|r]
Researchhotkey=190
Buttonpos=2,2
Researchbuttonpos=2,0
[ahmt]
Tip=(|cffffcc00K|r) Mass Teleport
Researchtip=(|cffffcc00P|r) Learn Mass Teleport
Hotkey=K
Researchhotkey=P
Buttonpos=3,2
Researchbuttonpos=3,0
[AHfs]
Tip=(|cffffcc00;|r) Flame Strike - [|cffffcc00Level 1|r],(|cffffcc00;|r) Flame Strike - [|cffffcc00Level 2|r],(|cffffcc00;|r) Flame Strike - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00'|r) Learn Flame Strike - [|cffffcc00Level %d|r]
Hotkey=186
Researchhotkey=222
Buttonpos=0,2
Researchbuttonpos=0,0
[AHbn]
Tip=(|cffffcc00Q|r) Banish - [|cffffcc00Level 1|r],(|cffffcc00Q|r) Banish - [|cffffcc00Level 2|r],(|cffffcc00Q|r) Banish - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00,|r) Learn Banish - [|cffffcc00Level %d|r]
Hotkey=Q
Researchhotkey=188
Buttonpos=1,2
Researchbuttonpos=1,0
[AHdr]
Tip=(|cffffcc00J|r) Siphon Mana - [|cffffcc00Level 1|r],(|cffffcc00J|r) Siphon Mana - [|cffffcc00Level 2|r],(|cffffcc00J|r) Siphon Mana - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00.|r) Learn Siphon Mana - [|cffffcc00Level %d|r]
Hotkey=J
Researchhotkey=190
Buttonpos=2,2
Researchbuttonpos=2,0
[AHpx]
Tip=(|cffffcc00K|r) Summon Phoenix
Researchtip=(|cffffcc00P|r) Learn Summon Phoenix
Hotkey=K
Researchhotkey=P
Buttonpos=3,2
Researchbuttonpos=3,0
[AHtb]
Tip=(|cffffcc00;|r) Storm Bolt - [|cffffcc00Level 1|r],(|cffffcc00;|r) Storm Bolt - [|cffffcc00Level 2|r],(|cffffcc00;|r) Storm Bolt - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00'|r) Learn Storm Bolt - [|cffffcc00Level %d|r]
Hotkey=186
Researchhotkey=222
Buttonpos=0,2
Researchbuttonpos=0,0
[AHtc]
Tip=(|cffffcc00Q|r) Thunder Clap - [|cffffcc00Level 1|r],(|cffffcc00Q|r) Thunder Clap - [|cffffcc00Level 2|r],(|cffffcc00Q|r) Thunder Clap - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00,|r) Learn Thunder Clap - [|cffffcc00Level %d|r]
Hotkey=Q
Researchhotkey=188
Buttonpos=1,2
Researchbuttonpos=1,0
[AHbh]
Tip=Bash - [|cffffcc00Level 1|r],Bash - [|cffffcc00Level 2|r],Bash - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00.|r) Learn Bash - [|cffffcc00Level %d|r]
Researchhotkey=190
Buttonpos=2,2
Researchbuttonpos=2,0
[AHav]
Tip=(|cffffcc00K|r) Avatar
Researchtip=(|cffffcc00P|r) Learn Avatar
Hotkey=K
Researchhotkey=P
Buttonpos=3,2
Researchbuttonpos=3,0
[AHhb]
Tip=(|cffffcc00;|r) Holy Light - [|cffffcc00Level 1|r],(|cffffcc00;|r) Holy Light - [|cffffcc00Level 2|r],(|cffffcc00;|r) Holy Light - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00'|r) Learn Holy Light - [|cffffcc00Level %d|r]
Hotkey=186
Researchhotkey=222
Buttonpos=0,2
Researchbuttonpos=0,0
[AHds]
Tip=(|cffffcc00Q|r) Divine Shield - [|cffffcc00Level 1|r],(|cffffcc00Q|r) Divine Shield - [|cffffcc00Level 2|r],(|cffffcc00Q|r) Divine Shield - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00,|r) Learn Divine Shield - [|cffffcc00Level %d|r]
Hotkey=Q
Researchhotkey=188
Buttonpos=1,2
Researchbuttonpos=1,0
[AHad]
Tip=Devotion Aura - [|cffffcc00Level 1|r],Devotion Aura - [|cffffcc00Level 2|r],Devotion Aura - [|cffffcc00Level 3|r]
Researchtip=(|cffffcc00.|r) Learn Devotion Aura - [|cffffcc00Level %d|r]
Researchhotkey=190
Buttonpos=2,2
Researchbuttonpos=2,0
[AHre]
Tip=(|cffffcc00K|r) Resurrection
Researchtip=(|cffffcc00P|r) Learn Resurrection
Hotkey=K
Researchhotkey=P
Buttonpos=3,2
Researchbuttonpos=3,0
[Oshd]
Tip=(|cffffcc00A|r) Summon Shadow Hunter
Revivetip=(|cffffcc00A|r) Revive Shadow Hunter
Awakentip=(|cffffcc00A|r) Awaken Shadow Hunter
Hotkey=A
Buttonpos=0,1
[Obla]
Tip=(|cffffcc00;|r) Summon Blademaster
Revivetip=(|cffffcc00;|r) Revive Blademaster
Awakentip=(|cffffcc00;|r) Awaken Blademaster
Hotkey=186
Buttonpos=0,2
[Ofar]
Tip=(|cffffcc00Q|r) Summon Far Seer
Revivetip=(|cffffcc00Q|r) Revive Far Seer
Awakentip=(|cffffcc00Q|r) Awaken Far Seer
Hotkey=Q
Buttonpos=1,2
[Otch]
Tip=Earthshaker
Buttonpos=3,0
[ogru]
Tip=(|cffffcc00'|r) Train Grunt
Hotkey=222
Buttonpos=0,0
[robs]
Tip=(|cffffcc00;|r) Research Berserker Strength
Hotkey=186
Buttonpos=0,2
[ohun]
Tip=(|cffffcc00,|r) Train Troll Headhunter
Hotkey=188
Buttonpos=1,0
[otbk]
Tip=(|cffffcc00,|r) Train Troll Berserker
Hotkey=188
Buttonpos=1,0
[rotr]
Tip=(|cffffcc00O|r) Research Troll Regeneration
Hotkey=O
Buttonpos=1,1
[robk]
Tip=(|cffffcc00Q|r) Berserker Upgrade
Hotkey=Q
Buttonpos=1,2
[ocat]
Tip=(|cffffcc00.|r) Train Demolisher
Hotkey=190
Buttonpos=2,0
[robf]
Tip=(|cffffcc00J|r) Burning Oil
Hotkey=J
Buttonpos=2,2
[orai]
Tip=(|cffffcc00'|r) Train Raider
Hotkey=222
Buttonpos=0,0
[owyv]
Tip=(|cffffcc00,|r) Train Wind Rider
Hotkey=188
Buttonpos=1,0
[okod]
Tip=(|cffffcc00.|r) Train Kodo Beast
Hotkey=190
Buttonpos=2,0
[otbr]
Tip=(|cffffcc00P|r) Train Troll Batrider
Hotkey=P
Buttonpos=3,0
[roen]
Tip=(|cffffcc00;|r) Research Ensnare
Hotkey=186
Buttonpos=0,2
[rovs]
Tip=(|cffffcc00O|r) Research Envenomed Weapon
Hotkey=O
Buttonpos=1,1
[rwdm]
Tip=(|cffffcc00J|r) Upgrade War Drums
Hotkey=J
Buttonpos=2,2
[rolf]
Tip=(|cffffcc00E|r) Research Liquid Fire
Hotkey=E
Buttonpos=2,1
[abtl]
Tip=(|cffffcc00;|r) Battle Stations
Hotkey=186
Buttonpos=0,2
[astd]
Tip=(|cffffcc00Q|r) Stand Down
Hotkey=Q
Buttonpos=1,2
[oshm]
Tip=(|cffffcc00'|r) Train Shaman
Hotkey=222
Buttonpos=0,0
[odoc]
Tip=(|cffffcc00,|r) Train Troll Witch Doctor
Hotkey=188
Buttonpos=1,0
[ospm]
Tip=(|cffffcc00.|r) Train Spirit Walker
Hotkey=190
Buttonpos=2,0
[rost]
Tip=(|cffffcc00;|r) Shaman Adept Training,(|cffffcc00;|r) Shaman Master Training
Hotkey=186,186
Buttonpos=0,2
[rowd]
Tip=(|cffffcc00Q|r) Witch Doctor Adept Training,(|cffffcc00Q|r) Witch Doctor Master Training
Hotkey=Q,Q
Buttonpos=1,2
[rowt]
Tip=(|cffffcc00J|r) Spirit Walker Adept Training,(|cffffcc00J|r) Spirit Walker Master Training
Hotkey=J,J
Buttonpos=2,2
[otau]
Tip=(|cffffcc00'|r) Train Tauren
Hotkey=222
Buttonpos=0,0
[rows]
Tip=(|cffffcc00;|r) Research Pulverize
Hotkey=186
Buttonpos=0,2
[opeo]
Tip=(|cffffcc00'|r) Train Peon
Hotkey=222
Buttonpos=0,0
[ropg]
Tip=(|cffffcc00.|r) Research Pillage
Hotkey=190
Buttonpos=2,0
[ropm]
Tip=(|cffffcc00P|r) Research Backpack
Hotkey=P
Buttonpos=3,0
[ostr]
Tip=(|cffffcc00;|r) Upgrade To Stronghold
Hotkey=186
Buttonpos=0,2
[ofrt]
Tip=(|cffffcc00;|r) Upgrade To Fortress
Hotkey=186
Buttonpos=0,2
[hslv]
Tip=(|cffffcc00'|r) Purchase Healing Salve
Hotkey=222
Buttonpos=0,0
[shas]
Tip=(|cffffcc00.|r) Purchase Scroll of Speed
Hotkey=190
Buttonpos=2,0
[oli2]
Tip=(|cffffcc00;|r) Purchase Orb of Lightning
Hotkey=186
Buttonpos=0,2
[tgrh]
Tip=(|cffffcc00Q|r) Purchase Tiny Great Hall
Hotkey=Q
Buttonpos=1,2
[rome]
Tip=(|cffffcc00'|r) Upgrade to Steel Melee Weapons,(|cffffcc00'|r) Upgrade to Thorium Melee Weapons,(|cffffcc00'|r) Upgrade to Arcanite Melee Weapons
Hotkey=222,222,222
Buttonpos=0,0
[rora]
Tip=(|cffffcc00,|r) Upgrade to Steel Ranged Weapons,(|cffffcc00,|r) Upgrade to Thorium Ranged Weapons,(|cffffcc00,|r) Upgrade to Arcanite Ranged Weapons
Hotkey=188,188,188
Buttonpos=1,0
[rosp]
Tip=(|cffffcc00.|r) Upgrade to Spiked Barricades,(|cffffcc00.|r) Upgrade to Improved Spiked Barricades,(|cffffcc00.|r) Upgrade to Advanced Spike Barricades
Hotkey=190,190,190
Buttonpos=2,0
[roar]
Tip=(|cffffcc00A|r) Upgrade to Steel Unit Armor,(|cffffcc00A|r) Upgrade to Thorium Unit Armor,(|cffffcc00A|r) Upgrade to Arcanite Unit Armor
Hotkey=A,A,A
Buttonpos=0,1
[rorb]
Tip=(|cffffcc00E|r) Reinforced Defenses
Hotkey=E
Buttonpos=2,1
[arep]
Tip=(|cffffcc00O|r) Repair
UnTip=|cffc3dbffRight-click to activate auto-casting.|r
Hotkey=O
Buttonpos=1,1
Unbuttonpos=1,1
[cmdbuildorc]
Tip=(|cffffcc00;|r) Build Structure
Hotkey=186
[AObu]
Buttonpos=0,2
[ogre]
Tip=(|cffffcc00'|r) Build Great Hall
Hotkey=222
Buttonpos=0,0
[obar]
Tip=(|cffffcc00,|r) Build Barracks
Hotkey=188
Buttonpos=1,0
[ofor]
Tip=(|cffffcc00.|r) Build War Mill
Hotkey=190
Buttonpos=2,0
[owtw]
Tip=(|cffffcc00P|r) Build Watch Tower
Hotkey=P
Buttonpos=3,0
[otrb]
Tip=(|cffffcc00A|r) Build Burrow
Hotkey=A
Buttonpos=0,1
[oalt]
Tip=(|cffffcc00O|r) Build Altar of Storms
Hotkey=O
Buttonpos=1,1
[osld]
Tip=(|cffffcc00E|r) Build Spirit Lodge
Hotkey=E
Buttonpos=2,1
[obea]
Tip=(|cffffcc00U|r) Build Beastiary
Hotkey=U
Buttonpos=3,1
[otto]
Tip=(|cffffcc00;|r) Build Tauren Totem
Hotkey=186
Buttonpos=0,2
[ovln]