vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --Here is some information on Action bar slots, and which addons use which slots:
2  
3 --ID#1-120 are the only ones that are available
4 --DEFAULT USE NO. OTHER ADDONS BUFFAHOY DEFAULT BUFFAHOY Alternate
5 --default bar 1: 1-12 --->Default UI bar
6 --default bar 2: 13-24 --->CT Bar1 left-hotbar
7 --default bar 3: 25-36 --->CT Bar2 right-hotbar, blizz Side Bar
8 --default bar 4: 37-48 --->CT Bar3 left-sidebar, blizz Side Bar 2 Buff Seq 1-2
9 --default bar 5: 49-60 --->CT Bar4 right-sidebar, Popbar, blizz bottom right MultiCast1-2
10 --default bar 6: 61-72 --->CT bar5 top-bar, Popbar, blizz bottom left UTIL/SC/BC2,3
11 --Druid Cat Bar 73-84 --->Telo's Bottombar (when not a druid?), druid Bear MultiCast1-2
12 -- 85-96 --->Telo's BottomBar UTIL/SC/BC2,3
13 --Druid Bear Bar 97-108 --->Telo's Sidebar (when not druid?)
14 -- 109-120--->Telo's Sidebar, Cosmos Bottom Bar Buff Seq 1-2
15  
16  
17  
18  
19  
20 --Declarations
21 BCS1={} --Declare Array, don't change this
22 BCS2={} --Declare Array, don't change this
23 MCS1={} --Declare Array, don't change this
24 MCS2={} --Declare Array, don't change this
25  
26 --Buff set 1 configuration
27 --This next variable is the action bar number of the first button in the first buffcast set.
28 --Change the number if you don't want BuffCast set 1 to use the range 37-42
29  
30 BCS1[1]=37
31  
32 --These all follow sequentially from the one defined above. Don't change them unless you really
33 --know what you're doing.
34  
35 BCS1[2]=BCS1[1]+1 --party1
36 BCS1[3]=BCS1[2]+1 --party2
37 BCS1[4]=BCS1[3]+1 --party3
38 BCS1[5]=BCS1[4]+1 --party4
39 BCS1[6]=BCS1[5]+1 --pets
40  
41 --This is the cooldown time (in seconds) before the cycle will reset (if you end mid-cycle, for example).
42 --You probably don't have to change this, but you can if you like. Reccomended between 5 and 20 seconds.
43  
44 BCS1["cooldown"]=60
45  
46  
47 --Buff set 2 configuration
48 --This next variable is the action bar number of the first button in the second buffcast set.
49 --Change the number if you don't want Buffcast set 2 to use the range 43-58
50  
51 BCS2[1]=43
52  
53 --These all follow sequentially from the one defined above. Don't change them unless you really
54 --know what you're doing.
55 BCS2[2]=BCS2[1]+1 --party1
56 BCS2[3]=BCS2[2]+1 --party2
57 BCS2[4]=BCS2[3]+1 --party3
58 BCS2[5]=BCS2[4]+1 --party4
59 BCS2[6]=BCS2[5]+1 --pets
60  
61 BCS2["cooldown"]=60
62  
63 --These next two variables are the action bar numbers of the 3rd and 4th Buff Sequences (each only 1 button long)
64 --You can change each independently
65 BCS3=71
66 BCS4=72
67 BCScooldown=20
68  
69 --Utility Function Configuration
70 --These are the variables for the utility functions, Heal 1, Heal 2, Cleanse, and Protect
71 HZR1=65
72 HZR2=66
73 HZR3=67
74 CZR1=68
75 CZR2=69
76 PZR1=70
77  
78  
79 --MultiCast 1 Configuration
80 --This next variable is the action bar number of the first button in the first MultiCast set
81 --Change the number if you don't want MultiCast set 1 to use the range 53-57
82  
83 MCS1[1]=49
84  
85 --These all follow sequentially form the one defined above. Don't change them unless you really
86 --know what you're doing
87  
88 MCS1[2]=MCS1[1]+1
89 MCS1[3]=MCS1[2]+1
90 MCS1[4]=MCS1[3]+1
91 MCS1[5]=MCS1[4]+1
92 MCS1[6]=MCS1[5]+1
93  
94 MCS1["cooldown"]=9
95  
96 --MultiCast 2 Configuration
97 --This next variable is the action bar number of the first button in the second MultiCast set
98 --Change the number if you don't want MultiCast set 1 to use the range 58-62
99  
100 MCS2[1]=55
101  
102 --These all follow sequentially form the one defined above. Don't change them unless you really
103 --know what you're doing
104  
105 MCS2[2]=MCS2[1]+1
106 MCS2[3]=MCS2[2]+1
107 MCS2[4]=MCS2[3]+1
108 MCS2[5]=MCS2[4]+1
109 MCS2[6]=MCS2[5]+1
110  
111 MCS2["cooldown"]=9
112  
113 --These are the action bar numbers of the ShoutCastable spell slots
114 SCT1=61
115 SCT2=62
116 SCT3=63
117 SCT4=64
118  
119  
120 --These are the action bar numbers of the RaidCast spell slots.
121 --They are defaulted to the slots for BuffCast
122 RCPalSha=BCS1[1]
123 RCWarrior=BCS1[2]
124 RCMage=BCS1[3]
125 RCPriest=BCS1[4]
126 RCWarlock=BCS1[5]
127 RCRogue=BCS1[6]
128 RCHunter=BCS2[1]
129 RCDruid=BCS2[2]
130 RCPet1=BCS2[3]
131 RCcooldown=60;
132  
133 --These are the action bar numbers of the RaidCast sequence 2 and 3 slots. By default, they are the same numbers
134 --as BuffCast sequences 3 and 4.
135 RCS2=BCS3
136 RCS3=BCS4