Slow forming groups got you down? Want to run MC but don't want to deal with the hassle of soloing or putting together a group? Hi Billy Mays here for the Improved Invite Macro!
/script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(i) then SendChatMessage("AQ40 GO!!!","WHISPER","ORCISH",c);InviteUnit(c); end; i=i+1; end;
(If you are alliance change "ORCISH" to "COMMON")
(Non Whisper version at the bottom)
(Replace "AQ40 GO!!!" with whatever you want the whisper to say)
Just copy and paste the above into a macro, /who 80, and voila! You just invited 49 level 80s to your group!
:P Basically this is a variant of the guildinvite macro (Credited below) that instead of ginviting people, invites them to your group. I would recommend this: /who 80 "class"
Don't just blanket all 80s, do it a class at a time to avoid overlapping invites. I'd also recommend having a friend join you first, and converting to raid before you start inviting.
Also a heads up - if the /who list is more than 20 people, you need to wait for it to invite everyone before you hit it again. Flood detection slows down the invites and whispers, so A: Be Patient and B: Don't spam it, the invites will all go out.
Additionally, if you are going to have a whisper, avoid hitting the same people more than once. With the whisper function added in you CAN be reported for spam. Hope someone finds this useful =)
Credits: Viaro1992 for the Ginvite macro
http://www.mmowned.com/forums/ui-mac...s-whisper.html
Nonwhisper version for spam ban protection:
/script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(i) then InviteUnit(c); end; i=i+1; end;