Hey all, I saw a thread about a macro that whispered and invited everybody in the who list to your guild.
Can somebody write a macro that I could use to whisper to everybody about the guild, but not actually invite them?
Most people I've encountered get annoyed when they are randomly invited into a guild, so I'd like to just ask them, then invite them if they say they would like to join.
Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.
No macro will do that much command line function as far as I know.
From what I can find, this looks like the closest mod to what you are looking for: [Only registered and activated users can see links. ]
2nd options: [Only registered and activated users can see links. ]
These do a bit more/different from what you're looking for and I don't know enough to make them ONLY do what you want, but chances are, if needed, I could edit some of the .lua file to change it enough to whisper whatever message you want.
Edit: I found the macro you were talking about.
/script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hello "..c.."! <House Of Elite> is now recruiting! Awsome guild! Join now!","WHISPER","COMMON",c); GuildInvite(c); end; i=i+1; end;
For this macro to work you have to do a make a /who list yourself (/who 80 paladin, /who 80 priest dalaran, etc.) After you have a /who list, use the script above (which can just be copied into a macro button and clicked on) and it will do the following:
*Check to see if they are in a guild or not. If not then -
*Send them the message "Hello (player's name)! <House of Elite> is now recreuiting! Awesome guild! Join Now!" and it will also guild invite them.
If you don't want the guild invite part then the following should work like the above, guild invite excluded.
/script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hello "..c.."! <House Of Elite> is now recruiting! Awsome guild! Join now!","WHISPER","COMMON",c); i=i+1; end;
Note: To change the whisper line, edit the underlined text.
Edit 2:
I found a very great and simple mod to do more or less what the above script does in a more customizable form: [Only registered and activated users can see links. ]