Advertisement
TrulyInsane1

WoW Macro - Flask Buff Check

Jul 18th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. List raid members without a flask active
  2.  
  3. Use this version to list members without an active flask to yourself:
  4. /run nf="[Flask!]: ";for i=1,GetNumGroupMembers()do for b=1,41 do ufl=UnitAura('raid'..i,b);if ufl then if strfind(ufl,"Flask")or strfind(ufl,"Distilled")then break;end;elseif b==41 then nf=nf..UnitName('raid'..i).." ";end;end;end;print(nf);
  5.  
  6.  
  7. Use this version to send the list to raid chat:
  8. /run nf="[Flask!]: ";for i=1,GetNumGroupMembers()do for b=1,41 do ufl=UnitAura('raid'..i,b);if ufl then if strfind(ufl,"Flask")or strfind(ufl,"Distilled")then break;end;elseif b==41 then nf=nf..UnitName('raid'..i).." ";end;end;end;SendChatMessage(nf,"raid");
  9.  
  10. Credit: Xaeros of Shadowmoon
  11. Use: Click the macro to report members in raid that are neither food buffed nor eating.
  12. Works in 7.1
  13. Will not report people using the Flask of the North.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement