View Single Post
05-31-11, 06:56 AM   #2
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
There should be addons which can do this

But it would be fairly simple I guess, when offline members aren't currently shown
/run for i = 1, select(2, GetNumGuildMembers()) do SendChatMessage("test message", "WHISPER", nil, GetGuildRosterInfo(i)) end
Code:
local t = {"player1", "player2", "player3"}

for i = 1, #t do
	SendChatMessage("test message", "WHISPER", nil, t[i])
end
Edit:
Oh lol. addon search/requests forum ><

Last edited by Ketho : 05-31-11 at 07:03 AM.
  Reply With Quote