Mass Guild Invite Macro + Mass Whisper menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    viaro1992's Avatar Member
    Reputation
    5
    Join Date
    Dec 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Mass Guild Invite Macro + Mass Whisper

    Hello all, this is my first post here on MMOwned. Please comment!

    What does it do? This macro will send out mass invites to your guild along with a personal whisper to all of your victims.

    How to use: Once you have the macro made, put it on any action bar you whould like. Then open your /who list, and search anything you whould like, then hit the macro, it will send a invite/whisper to all your results. Just remember the /who pane needs to be open to use.

    Useful Tip: If you want to hit everyone on the server you will need to be specific on your searching. When I was on Retail the most effective way I found was to search by levels. Ex: /who 1 Ex: /who 2 Ex: /who 3 ... All the way to 80.

    Useful Tip: You can also make a Welcoming macro to make it better, like "/g Welcome.".




    Copy all the text and make a macro


    /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;


    IMPORTANT: Change "<House Of Elite>" to your guild name, leave the "<>" there.

    IMPORTANT: You can change "Hello" and "Is now recruiting! Awesome guild!, Join now!" This is the message that will be sent to all. BUT MAKE SURE NOT TO GET RID OF THE "..c.." This will put in the characters name that you are whispering.

    Well, that's about it
    Last edited by viaro1992; 02-12-2009 at 10:46 PM.

    Mass Guild Invite Macro + Mass Whisper
  2. #2
    Eski's Avatar Contributor
    Reputation
    183
    Join Date
    Dec 2006
    Posts
    1,010
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't ask for Rep.

  3. #3
    salsworn's Avatar Active Member
    Reputation
    22
    Join Date
    Apr 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very interesting, could you possibly convert it into .Lua? Possibly make a criteria box(es) with level, class and/or race specifications, well +Rep
    disregard females, acquire currency

  4. #4
    Xiandri's Avatar Established Member
    Reputation
    66
    Join Date
    Feb 2008
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    works great, but for some reason it spams "You cannot speak that language." all the time tho

    still does the invite tho

    +repped

  5. #5
    Vyre's Avatar Contributor
    Reputation
    82
    Join Date
    Oct 2009
    Posts
    337
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    1 year old post dude, stop necroing...

  6. #6
    Xiandri's Avatar Established Member
    Reputation
    66
    Join Date
    Feb 2008
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vyre View Post
    1 year old post dude, stop necroing...
    so old posts are worthless, is that what you're saying?

    i disagree.

  7. #7
    djzzero's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    same, this is a very good thread.

  8. #8
    orasmus's Avatar Member
    Reputation
    2
    Join Date
    Oct 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is the modified version for those who do not want the whisper.



    /script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("","WHISPER","COMMON",c); GuildInvite(c); end; i=i+1; end;

  9. #9
    shindaustin's Avatar Active Member
    Reputation
    35
    Join Date
    Dec 2006
    Posts
    502
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xiandri View Post
    works great, but for some reason it spams "You cannot speak that language." all the time tho

    still does the invite tho

    +repped
    Go into the macro and change "COMMON" to.. "ORGISH"

    And vice versa:

    So for the first macro:
    /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","ORGISH",c); GuildInvite(c); end; i=i+1; end;

  10. #10
    Yottabyte's Avatar Private
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by salsworn View Post
    Very interesting, could you possibly convert it into .Lua? Possibly make a criteria box(es) with level, class and/or race specifications, well +Rep
    I'm working on it. Ive already finished the search engine portion of the code. I am now working to finalize the core of the addon. Now when you send the whisper you can send up to the full 255 characters instead of having to squeeze inside the code. I will also be adding a "Do Not Invite" list that records the character names of invited players so if they show up in your search results again it will pass over them.

  11. #11
    lushlad's Avatar Active Member
    Reputation
    15
    Join Date
    Mar 2007
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Update on this LUA version?
    At the end of the day.... its night

  12. #12
    spygadget007's Avatar Member
    Reputation
    4
    Join Date
    May 2008
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have a question does it send the invite to people already in guilds?

  13. #13
    Koalemos's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Jul 2010
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This worked well for me. What I was wondering is if there is a way to only search for people not in a guild currently.

  14. #14
    Appled's Avatar Contributor
    Reputation
    105
    Join Date
    Apr 2007
    Posts
    568
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As of patch 4.0.3a this is still working perfectly.

  15. #15
    Hogger's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Re-construation of other post. -rep
    Tip: just use rapedotty addon
    The Gnoll King!

Page 1 of 2 12 LastLast

Similar Threads

  1. SGI (Super guild invite) macro/binding?
    By Uddberg in forum WoW UI, Macros and Talent Specs
    Replies: 3
    Last Post: 09-03-2014, 03:08 PM
  2. Looking for Vanilla WoW Guild invite macro
    By alexx91 in forum WoW UI, Macros and Talent Specs
    Replies: 0
    Last Post: 06-04-2011, 04:30 AM
  3. Mass Party Invite Macro
    By FNOG in forum WoW UI, Macros and Talent Specs
    Replies: 7
    Last Post: 09-18-2009, 02:32 PM
  4. Whisper macro - guild invites
    By Fableflames in forum WoW UI, Macros and Talent Specs
    Replies: 4
    Last Post: 08-14-2009, 12:35 AM
All times are GMT -5. The time now is 12:16 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search