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 UTL={}
26 SCT={}
27 RCS1={}
28  
29 --Buff set 1 configuration
30 --This next variable is the action bar number of the first button in the first buffcast set.
31 --Change the number if you don't want BuffCast set 1 to use the range 37-42
32  
33 BCS1[1]=109
34  
35 --These all follow sequentially from the one defined above. Don't change them unless you really
36 --know what you're doing.
37  
38 BCS1[2]=BCS1[1]+1 --party1
39 BCS1[3]=BCS1[2]+1 --party2
40 BCS1[4]=BCS1[3]+1 --party3
41 BCS1[5]=BCS1[4]+1 --party4
42 BCS1[6]=BCS1[5]+1 --pets
43  
44 --This is the cooldown time (in seconds) before the cycle will reset (if you end mid-cycle, for example).
45 --You probably don't have to change this, but you can if you like. Reccomended between 5 and 20 seconds.
46  
47 BCS1["cooldown"]=60
48  
49  
50 --Buff set 2 configuration
51 --This next variable is the action bar number of the first button in the second buffcast set.
52 --Change the number if you don't want Buffcast set 2 to use the range 43-58
53  
54 BCS2[1]=115
55  
56 --These all follow sequentially from the one defined above. Don't change them unless you really
57 --know what you're doing.
58 BCS2[2]=BCS2[1]+1 --party1
59 BCS2[3]=BCS2[2]+1 --party2
60 BCS2[4]=BCS2[3]+1 --party3
61 BCS2[5]=BCS2[4]+1 --party4
62 BCS2[6]=BCS2[5]+1 --pets
63  
64 BCS2["cooldown"]=60
65  
66 --These next two variables are the action bar numbers of the 3rd and 4th Buff Sequences (each only 1 button long)
67 --You can change each independently
68 BCS3=95
69 BCS4=96
70 BCScooldown=60
71  
72 --Utility Function Configuration
73 --These are the variables for the utility functions, Heal 1, Heal 2, Cleanse, and Protect
74 HZR1=89
75 HZR2=90
76 HZR3=91
77 CZR1=92
78 CZR2=93
79 PZR1=94
80  
81 UTL[1]=HZR1
82 UTL[2]=HZR2
83 UTL[3]=HZR3
84 UTL[4]=CZR1
85 UTL[5]=CZR2
86 UTL[6]=PZR1
87  
88 --MultiCast 1 Configuration
89 --This next variable is the action bar number of the first button in the first MultiCast set
90 --Change the number if you don't want MultiCast set 1 to use the range 53-57
91  
92 MCS1[1]=73
93  
94 --These all follow sequentially form the one defined above. Don't change them unless you really
95 --know what you're doing
96  
97 MCS1[2]=MCS1[1]+1
98 MCS1[3]=MCS1[2]+1
99 MCS1[4]=MCS1[3]+1
100 MCS1[5]=MCS1[4]+1
101 MCS1[6]=MCS1[5]+1
102  
103 MCS1["cooldown"]=9
104  
105 --MultiCast 2 Configuration
106 --This next variable is the action bar number of the first button in the second MultiCast set
107 --Change the number if you don't want MultiCast set 1 to use the range 58-62
108  
109 MCS2[1]=79
110  
111 --These all follow sequentially form the one defined above. Don't change them unless you really
112 --know what you're doing
113  
114 MCS2[2]=MCS2[1]+1
115 MCS2[3]=MCS2[2]+1
116 MCS2[4]=MCS2[3]+1
117 MCS2[5]=MCS2[4]+1
118 MCS2[6]=MCS2[5]+1
119  
120 MCS2["cooldown"]=9
121  
122 --These are the action bar numbers of the ShoutCastable spell slots
123 SCT1=85
124 SCT2=86
125 SCT3=87
126 SCT4=88
127  
128 SCT[1]=SCT1
129 SCT[2]=SCT2
130 SCT[3]=SCT3
131 SCT[4]=SCT4
132  
133  
134 --These are the action bar numbers of the RaidCast spell slots.
135 --They are defaulted to the slots for BuffCast
136 RCPalSha=BCS1[1]
137 RCWarrior=BCS1[2]
138 RCMage=BCS1[3]
139 RCPriest=BCS1[4]
140 RCWarlock=BCS1[5]
141 RCRogue=BCS1[6]
142 RCHunter=BCS2[1]
143 RCDruid=BCS2[2]
144 RCPet1=BCS2[3]
145 RCcooldown=60;
146  
147 RCS1[1]=RCPalSha
148 RCS1[2]=RCWarrior
149 RCS1[3]=RCMage
150 RCS1[4]=RCPriest
151 RCS1[5]=RCWarlock
152 RCS1[6]=RCRogue
153 RCS1[7]=RCHunter
154 RCS1[8]=RCDruid
155 RCS1[9]=RCPet1
156  
157  
158 --These are the action bar numbers of the RaidCast sequence 2 and 3 slots. By default, they are the same numbers
159 --as BuffCast sequences 3 and 4.
160 RCS2=BCS3
161 RCS3=BCS4