Thread Tools Display Modes
05-31-11, 06:45 AM   #1
makaka
A Cyclonian
Join Date: Feb 2010
Posts: 40
Arrow Mass guild whisp.

Does some1 know addon, who can whisp all ppl in the guild who is online? or specific players from the guild?
  Reply With Quote
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
05-31-11, 01:24 PM   #3
Crissa
A Flamescale Wyrmkin
 
Crissa's Avatar
Join Date: May 2008
Posts: 136
So like, you select some of the players from the list online and whisper them?

Why can't you just use guild chat? Sounds like a quick way to get /ignored, honestly o-o;

-Crissa
  Reply With Quote
06-06-11, 06:18 PM   #4
Lily.Petal
A Molten Giant
 
Lily.Petal's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 540
/run for i = 1, select(2, GetNumGuildMembers()) do SendChatMessage("test message", "WHISPER", nil, GetGuildRosterInfo(i)) end
Works just fine. Just set it as a macro and then change "test message" to your desired message. I can't see someone wanting to do it more then every now and then so it should be just fine.

Also tested it myself to check to see if it did.

Point taken I got some angry responses by calling everyone in the guild a woman.
__________________

Aggro Color to KG Panels Borders - Nibelheim
Lua Based UI Hider - Nibelheim
Custom LUA PowerText - Stuf - Nibelheim, Seerah

Last edited by Lily.Petal : 06-06-11 at 06:23 PM.
  Reply With Quote
06-07-11, 02:12 AM   #5
makaka
A Cyclonian
Join Date: Feb 2010
Posts: 40
I do not deny it's a great macro, but do not want to whisper to someone I whispered.

That is, one said, more to him to whisper I will not.
  Reply With Quote
06-07-11, 10:04 AM   #6
voodoodad
Large, Friendly Letters!
 
voodoodad's Avatar
Join Date: Oct 2008
Posts: 1,632
Originally Posted by makaka View Post
I do not deny it's a great macro, but do not want to whisper to someone I whispered.

That is, one said, more to him to whisper I will not.
Yoda? Is that you? Or maybe the backwards talking alien from Star Trek III?
__________________

~ no need to make the message completely obnoxious - Cairenn
  Reply With Quote
06-07-11, 10:59 AM   #7
Chibi
A Cyclonian
 
Chibi's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 43
Originally Posted by makaka View Post
I do not deny it's a great macro, but do not want to whisper to someone I whispered.

That is, one said, more to him to whisper I will not.
I *think* he's saying he doesn't want to whisper to people more than once. E.g. used the macro while Guildies A, B, and C were on, and X, Y, and Z were offline. And when X, Y, and Z sign on, he'd like to be able to whisper just them, but not A, B and C again.
__________________
Perhaps...
  Reply With Quote
06-07-11, 11:11 AM   #8
makaka
A Cyclonian
Join Date: Feb 2010
Posts: 40
Originally Posted by Chibi View Post
I *think* he's saying he doesn't want to whisper to people more than once. E.g. used the macro while Guildies A, B, and C were on, and X, Y, and Z were offline. And when X, Y, and Z sign on, he'd like to be able to whisper just them, but not A, B and C again.
correctly.
  Reply With Quote
06-07-11, 11:20 AM   #9
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
does this work? (provided that offline members aren't currently shown in the guild roster tab)
Code:
local t = {}

function SpamGuildies()
	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
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?

Last edited by Ketho : 06-07-11 at 05:11 PM.
  Reply With Quote
06-07-11, 11:40 AM   #10
Chibi
A Cyclonian
 
Chibi's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 43
Originally Posted by Ketho View Post
Are there really no addons out there which can do what he wants?
Addons or no, I'm still not sure why he can't just ask in guild/set it up in the GMotD :\
__________________
Perhaps...
  Reply With Quote
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
06-12-11, 10:02 AM   #12
makaka
A Cyclonian
Join Date: Feb 2010
Posts: 40
Tell me plz, can some1 made script (remake), that whisp only who is online?
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Mass guild whisp.

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off