Thread: oUF
View Single Post
07-18-14, 02:28 AM   #2
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
Lua Code:
  1. local namelist = UnitName("player")
  2. for i = 2,40 do -- or whatever your desired group size is
  3.   namelist = namelist..","..UnitName("player")
  4. end
  5.  
  6. local raid = oUF:SpawnHeader(
  7.   -- The rest of your attributes
  8.   "nameList", namelist
  9. )
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
  Reply With Quote