|
Hi,
I am modding a macro i found online that takes the list of players from the /who command and then sends out a message and a guild recruitment invite.
I would like to then add the players that the invite is sent out to to a list so that i never ask the same players twice as this could develop into spamming.
It would also have to filter out players already in this list. Is this possible? If so, how?
If it goes above 255 characters I think i can compile to addon.
Here is current macro:
/script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hi "..c.."MESSAGE TO PLAYERS","WHISPER","COMMON",c); GuildInvite(c); end; i=i+1;
Thanks for any help,
SSP
|