WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Help/Support (https://www.wowinterface.com/forums/forumdisplay.php?f=3)
-   -   Minimalistic Buff/Flask Check (https://www.wowinterface.com/forums/showthread.php?t=34452)

Silberbüchse 08-13-10 09:59 AM

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.

Farook 08-13-10 09:39 PM

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/

Unkn 08-13-10 10:30 PM

1 Attachment(s)
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);

Led ++ 08-14-10 12:51 AM

Unkn, can anyone use this or just the raidleader? :)

Unkn 08-14-10 01:13 AM

Anyone

--The message you have entered is too short. Please lengthen your message to at least 10 characters.


All times are GMT -6. The time now is 06:32 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI