Thread Tools Display Modes
08-13-10, 09:59 AM   #1
Silberbüchse
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Oct 2007
Posts: 6
Minimalistic Buff/Flask Check

Like the title says. Im searching a minimalistic raid buff & flask check addon. Lua configuration via spell id , a slash command to check buffs and text output to see if all is well.
  Reply With Quote
08-13-10, 09:39 PM   #2
Farook
A Molten Giant
 
Farook's Avatar
Join Date: Mar 2006
Posts: 595
If you are looking for an addon to only check yourself, I'd suggest you take a look an "Energized".

http://www.wowace.com/addons/energized/
__________________
  Reply With Quote
08-13-10, 10:30 PM   #3
Unkn
Premium Member
 
Unkn's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 258
Or you can use macros...


Raid ones that report to raid:

Food:
Code:
/run nfb="[Eat!]: ";for i=1,GetNumRaidMembers()do for b=1,40 do ua=UnitAura('raid'..i,b);if ua=="Well Fed"or ua=="Food"then break;elseif b==40 and ua~="Well Fed"then nfb=nfb..UnitName('raid'..i).." ";end;end;end;SendChatMessage(nfb,"raid");
Flask:
Code:
/run nf="[Flask!]: ";for i=1,GetNumRaidMembers()do for b=1,41 do ufl=UnitAura('raid'..i,b);if ufl then if strfind(ufl,"Flask")then break;end;elseif b==41 then nf=nf..UnitName('raid'..i).." ";end;end;end;SendChatMessage(nf,"raid");
can see what it looks like in attachment. Will also show if someones wearing 1 elixir vs flask.

Raid ones that report just to you... ie no raid spam:

Food:
Code:
/run nfb="[Eat!]: ";for i=1,GetNumRaidMembers()do for b=1,25 do ua=UnitAura('raid'..i,b);if ua=="Well Fed"or ua=="Food"then break;elseif b==40 and ua~="Well Fed"then nfb=nfb..UnitName('raid'..i).." ";end;end;end;print(nfb);


Flask:
Code:
/run nf="[Flask!]: ";for i=1,GetNumRaidMembers()do for b=1,41 do ufl=UnitAura('raid'..i,b);if ufl then if strfind(ufl,"Flask")then break;end;elseif b==41 then nf=nf..UnitName('raid'..i).." ";end;end;end;print(nf);
Attached Thumbnails
Click image for larger version

Name:	macrochecks.jpg
Views:	801
Size:	16.3 KB
ID:	4700  
__________________
"I'm very feminine. And I'll beat the crap out of ANYONE who disagrees!"
  Reply With Quote
08-14-10, 12:51 AM   #4
Led ++
A Frostmaul Preserver
 
Led ++'s Avatar
AddOn Author - Click to view addons
Join Date: Jan 2009
Posts: 254
Unkn, can anyone use this or just the raidleader?
__________________
  Reply With Quote
08-14-10, 01:13 AM   #5
Unkn
Premium Member
 
Unkn's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 258
Anyone

--The message you have entered is too short. Please lengthen your message to at least 10 characters.
__________________
"I'm very feminine. And I'll beat the crap out of ANYONE who disagrees!"
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Minimalistic Buff/Flask Check

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off