Friday, August 21, 2009

List Raid Members Without A Food Buff Macro

Description:
This will list members without a food buff to yourself.
Macro:
/run nfb="No Food: ";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;print(nfb);


Description:
This will send the list of members without a food buff to raid chat.
Macro:
/run nfb="No Food: ";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");

No comments: