View Single Post
11-07-10, 08:31 AM   #9
Issa
A Kobold Labourer
Join Date: Oct 2008
Posts: 1
If you want to display the group number for every raid member, you can use this code:
Code:
if not UnitInRaid("PLAYER") then return end
for i = 1 , GetNumRaidMembers() do
    name, _, subgroup = GetRaidRosterInfo(i)
    if (name == Name(unit)) then
        return subgroup
    end
end
combined with the created event PARTY_MEMBERS_CHANGED that mrruben5 mentioned.
  Reply With Quote