View Single Post
06-07-11, 01:11 PM   #11
makaka
A Cyclonian
Join Date: Feb 2010
Posts: 40
Originally Posted by Ketho View Post
does this work? (provided that offline members aren't currently shown in the guild roster tab)
Code:
local t = {}

for i = 1, select(2, GetNumGuildMembers()) do
	local name = GetGuildRosterInfo(i)
	if not t[name] then
		SendChatMessage("test message", "WHISPER", nil, name)
		t[name] = true
	end
end
macro version; where t1 is some arbitrarily global variable
Code:
/run t1=t1 or {}for i=1,select(2,GetNumGuildMembers())do local name=GetGuildRosterInfo(i)if not t1[name]then SendChatMessage("test message","WHISPER",nil,name)t1[name]=true end end

Are there really no addons out there which can do what he wants?
I will be happy, if it all can be like ready addon not just like as code.

Originally Posted by Chibi View Post
Addons or no, I'm still not sure why he can't just ask in guild/set it up in the GMotD :\
When u whisp somebody, u talk him, when u put it on GMOTD u talk it all. Somebody when see gmotd think "ppphhh... no, will not do". When 1 on 1, its say - "OK, np!". That was I looking for this addon

Cool english?

Last edited by makaka : 06-07-11 at 01:14 PM.
  Reply With Quote