Language:
Lua     Change language:
Pastebin: 116874
Author: Anonymous
Subject: Untitled
Created: 2009-06-29 12:55:54
Download and save
Toggle line numbers
1-- Name: LonnySpellAlert 
2-- Author: Eyal Shilony (Lonny) 
3-- Email: eyal.net@msn.com 
4 
5--[[ 
6    [SPELL] = {                     required: A valid spell ID or spell name    (e.g. "53601", "Sacred Shield") 
7        [source] = {                required: The spell source (player, playerpet, party, enemy) 
8            category = "buff",      required: A valid layout category 
9            event = "gain-buff"     optional: gain-buff, lose-buff, gain-debuff, lose-debuff [, or commented] (e.g. "gain-buff,lose-buff", "gain-buff") 
10            channel = "pary",       optional: chat, say, yell, party, guild, raid, raid_warning, battleground [, or commented] 
11            criticalsOnly = true,   optional: true, false [, or commented] 
12            arenaOnly = true,       optional: true, false [, or commented] 
13        }, 
14        castStart = true,           optional: true, false [, or commented] 
15        castSuccess = true,         optional: true, false [, or commented] 
16        class = "paladin",          required: The class which uses the spell, ignore/delete it for effects. (this is a UI flag only, and it is required for future UI implementation.) 
17    } 
18]]-- 
19 
20LonnySpellAlertData = { 
21    -- HUNTER 
22    -- Improved Stead Shot 
23    ["#53220"] = { 
24        ["player"] = { 
25            event = "gain-buff"
26            category = "Buffs"
27        }
28        class = "hunter"
29    }
30    -- Lock and Load 
31    ["#56453"] = { 
32        ["player"] = { 
33            event = "gain-buff"
34            category = "Buffs"
35        }
36        class = "hunter"
37    }
38    -- Rapid Killing 
39    ["#35098#35099"] = { 
40        ["player"] = { 
41            event = "gain-buff"
42            category = "Buffs"
43        }
44        class = "hunter"
45    }
46    -- MAGE 
47    -- Arcane Concentration 
48    ["#12536"] = { 
49        ["player"] = { 
50            event = "gain-buff"
51            category = "Buffs"
52        }
53        class = "mage"
54    }
55    -- Brain Freeze (Fireball!) 
56    ["#57761"] = { 
57        ["player"] = { 
58            event = "gain-buff"
59            category = "Buffs"
60        }
61        class = "mage"
62    }
63    -- Fingers of Frost 
64    ["#44544"] = { 
65        ["player"] = { 
66            event = "gain-buff"
67            category = "Buffs"
68        }
69        class = "mage"
70    }
71    -- Firestarter 
72    ["#54741"] = { 
73        ["player"] = { 
74            event = "gain-buff"
75            category = "Buffs"
76        }
77        class = "mage"
78    }
79    -- Hot Streak 
80    ["#48108"] = { 
81        ["player"] = { 
82            event = "gain-buff"
83            category = "Buffs"
84        }
85        class = "mage"
86    }
87    -- Missile Barrage 
88    ["#44401"] = { 
89        ["player"] = { 
90            event = "gain-buff"
91            category = "Buffs"
92        }
93        class = "mage"
94    }
95    -- DRUID 
96    -- Eclipse 
97    ["#48517#48518"] = { 
98        ["player"] = { 
99            event = "gain-buff"
100            category = "Buffs"
101        }
102        class = "druid"
103    }
104    -- Nature's Grace 
105    ["#16886"] = { 
106        ["player"] = { 
107            event = "gain-buff"
108            category = "Buffs"
109        }
110        class = "druid"
111    }
112    -- Omen of Clarity 
113    ["#16870"] = { 
114        ["player"] = { 
115            event = "gain-buff"
116            category = "Buffs"
117        }
118        class = "druid"
119    }
120    -- Owlkin Frenzy 
121    ["#48391"] = { 
122        ["player"] = { 
123            event = "gain-buff"
124            category = "Buffs"
125        }
126        class = "druid"
127    }
128    -- PRIEST 
129    -- Martyrdom 
130    ["#14743#27828"] = { 
131        ["player"] = { 
132            event = "gain-buff"
133            category = "Buffs"
134        }
135        class = "priest"
136    }
137    -- Serendipity 
138    ["#63731#63734#63735#63731#63734#63735"] = { 
139        ["player"] = { 
140            event = "gain-buff"
141            category = "Buffs"
142        }
143        class = "priest"
144    }
145    -- Surge of Light 
146    ["#33151"] = { 
147        ["player"] = { 
148            event = "gain-buff"
149            category = "Buffs"
150        }
151        class = "priest"
152    }
153    -- SHAMAN 
154    -- Elemental Focus 
155    ["#16246"] = { 
156        ["player"] = { 
157            event = "gain-buff"
158            category = "Buffs"
159        }
160        class = "shaman"
161    }
162    -- Maelstrom Weapon (fifth stack) 
163    ["#53817"] = { 
164        ["player"] = { 
165            event = "gain-buff, dose: 5"
166            category = "Buffs"
167        }
168        class = "shaman"
169    }
170    -- Tital Waves 
171    ["#53390"] = { 
172        ["player"] = { 
173            event = "gain-buff"
174            category = "Buffs"
175        }
176        class = "shaman"
177    }
178    -- WARLOCK 
179    -- Backdraft 
180    ["#54274#54276#54277"] = { 
181        ["player"] = { 
182            event = "gain-buff"
183            category = "Buffs"
184        }
185        class = "warlock"
186    }
187    -- Backlash 
188    ["#34936"] = { 
189        ["player"] = { 
190            event = "gain-buff"
191            category = "Buffs"
192        }
193        class = "warlock"
194    }
195    -- Decimation 
196    ["#63165#63167"] = { 
197        ["player"] = { 
198            event = "gain-buff"
199            category = "Buffs"
200        }
201        class = "warlock"
202    }
203    -- Empowered Imp 
204    ["#47283"] = { 
205        ["player"] = { 
206            event = "gain-buff"
207            category = "Buffs"
208        }
209        class = "warlock"
210    }
211    -- Molten Core 
212    ["#47383"] = { 
213        ["player"] = { 
214            event = "gain-buff"
215            category = "Buffs"
216        }
217        class = "warlock"
218    }
219    -- Nightfall 
220    ["#17941"] = { 
221        ["player"] = { 
222            event = "gain-buff"
223            category = "Buffs"
224        }
225        class = "warlock"
226    }
227    -- WARRIOR 
228    -- Bloodsurge 
229    ["#46916"] = { 
230        ["player"] = { 
231            event = "gain-buff"
232            category = "Buffs"
233        }
234        class = "warrior"
235    }
236    -- Sudden Death 
237    ["#52437"] = { 
238        ["player"] = { 
239            event = "gain-buff"
240            category = "Buffs"
241        }
242        class = "warrior"
243    }
244    -- Sword and Board 
245    ["#50227"] = { 
246        ["player"] = { 
247            event = "gain-buff"
248            category = "Buffs"
249        }
250        class = "warrior"
251    }
252    -- Taste for Blood 
253    ["#60503"] = { 
254        ["player"] = { 
255            event = "gain-buff"
256            category = "Buffs"
257        }
258        class = "warrior"
259    }
260    -- PALADIN 
261    -- The Art of War 
262    ["#53489#59578"] = { 
263        ["player"] = { 
264            event = "gain-buff"
265            category = "Buffs"
266        }
267        class = "paladin"
268    }
269    -- Infusion of Light 
270    ["#53672#54149"] = { 
271        ["player"] = { 
272            event = "gain-buff"
273            category = "Buffs"
274        }
275        class = "paladin"
276    }
277    -- Sacred Shield 
278    ["#53601"] = { 
279        ["player"] = { 
280            event = "gain-buff"
281            category = "Buffs"
282        }
283        class = "paladin"
284    }
285    -- DEATHKNIGHT 
286    -- Killing Machine 
287    ["#51123#51127#51128#51129#51130"] = { 
288        ["player"] = { 
289            event = "gain-buff"
290            category = "Buffs"
291        }
292        class = "deathknight"
293    }
294    -- Rime (Freezing Fog) 
295    ["#59052"] = { 
296        ["player"] = { 
297            event = "gain-buff"
298            category = "Buffs"
299        }
300        class = "deathknight"
301    }
302    -- Cinderglacier (Runeforge) 
303    ["#53386"] = { 
304        ["player"] = { 
305            event = "gain-buff"
306            category = "Buffs"
307        }
308        class = "deathknight"
309    }
310    -- EFFECTS 
311    -- Quagmirran's Eye (Spell Haste) 
312    ["#33370"] = { 
313        ["player"] = { 
314            event = "gain-buff"
315            category = "Items"
316        }
317    }
318    -- Healing Trance 
319    ["#37706#37721#37722#37723#60512#60513#60514#60515"] = { 
320        ["player"] = { 
321            event = "gain-buff"
322            category = "Items"
323        }
324    }
325    -- Glyph of Revenge 
326    ["#58363"] = { 
327        ["player"] = { 
328            event = "gain-buff"
329            category = "Glyphs"
330        }
331    }
332    -- Glyph of Life Tap 
333    ["#63321"] = { 
334        ["player"] = { 
335            event = "gain-buff"
336            category = "Glyphs"
337        }
338    }
339    -- Wrath of Elune (PvP Set Bonus) 
340    ["#46833"] = { 
341        ["player"] = { 
342            event = "gain-buff"
343            category = "Items"
344        }
345    }
346    -- Elune's Wrath (Tier 8 Set Bonus) 
347    ["#64823"] = { 
348        ["player"] = { 
349            event = "gain-buff"
350            category = "Items"
351        }
352    }
353    -- PvP Trinket 
354    ["#42292"] = { 
355        ["player"] = { 
356            event = "gain-buff"
357            category = "PvP"
358            channel = "pary"
359            arenaOnly = true
360        }
361    }
362} 
Download and save
Toggle line numbers
Thread:
[116874] Untitled by Anonymous at 2009-06-29 12:55:54
Tip: Click the line numbers to toggle highliting on that line.

Paste followup:

Language:
Author:
Subject:


    Tabstop:     bigger biggest
Note: You can prefix a line with "@@@" to highlight it.