Advertisement
Stjern

Untitled

Jan 24th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function()
  2.  
  3. local ret = ""
  4.  
  5. for unit in WA_IterateGroupMembers() do
  6. local stacks = select(3, WA_GetUnitDebuff(unit, "Shrunk")) or 0
  7. if not UnitIsDead(unit) and (UnitIsVisible(unit)) and UnitGroupRolesAssigned(unit) ~= "TANK" then
  8. ret = ret .. UnitName(unit)..":".. stacks /n
  9. end
  10. end
  11.  
  12. return ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement