[How to] Invite hundreds of people to a guild QUICK! menu

Shout-Out

User Tag List

Page 7 of 14 FirstFirst ... 34567891011 ... LastLast
Results 91 to 105 of 206
  1. #91
    Stans Dad's Avatar Banned
    Reputation
    404
    Join Date
    Dec 2007
    Posts
    743
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the comments guys! Didn't realize how big this thread has gotten since I've taken a break from WoW.

    I've been seeing people getting temp. bans for spam/mass invites. This is common sense, don't do this OVER and OVER. It's meant to be used 1-2 twice a day at MOST.
    Last edited by Stans Dad; 01-10-2010 at 11:26 PM.

    [How to] Invite hundreds of people to a guild QUICK!
  2. #92
    jereminion's Avatar Active Member
    Reputation
    28
    Join Date
    Jun 2007
    Posts
    308
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    now i have a 200 person guild from this addon. it works nicely when you do it on 1-3 different characters on your account and once every few hours. some people get mad and threaten to report you but i havent been banned yet.

  3. #93
    Stans Dad's Avatar Banned
    Reputation
    404
    Join Date
    Dec 2007
    Posts
    743
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still, it's a bit risky. I would probably invite people once a day. Just to remain safe.

  4. #94
    LordManwe's Avatar Member
    Reputation
    5
    Join Date
    Dec 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Epic, Really useful when you are starting a new guild.

  5. #95
    xGen's Avatar Member
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow, i love it! Its great for new guilds.

  6. #96
    IndoBear's Avatar Private
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cheers Stans, this thing is a state of art!

  7. #97
    LumerusTehDoorid's Avatar Private
    Reputation
    4
    Join Date
    Jan 2010
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Shameless guild spamming.

    I like it. I know that it's a pain in the ass to get people to join a bank alta guild. I might give this addon a try for that =p

  8. #98
    Stans Dad's Avatar Banned
    Reputation
    404
    Join Date
    Dec 2007
    Posts
    743
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LordManwe View Post
    Epic, Really useful when you are starting a new guild.
    Originally Posted by Mizchamp View Post
    Wow, i love it! Its great for new guilds.
    Defninetly, it's also a handy tool for leveling guilds. I like to use it week by week. Then after a month or so, I stop and run it again a few months later =D.

  9. #99
    BonutDot's Avatar Contributor
    Reputation
    235
    Join Date
    Aug 2006
    Posts
    418
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Easier way:

    /who 1-20

    (or whatever level range you want)

    /script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hello "..c.."! <my guild> is now recruiting! We have a cool tabard, join now!","WHISPER",nil,c); GuildInvite(c); end; i=i+1; end;

    Change red part to change the guild recruitment message.

  10. #100
    xGen's Avatar Member
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BonutDot View Post
    Easier way:

    /who 1-20

    (or whatever level range you want)

    /script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hello "..c.."! <my guild> is now recruiting! We have a cool tabard, join now!","WHISPER",nil,c); GuildInvite(c); end; i=i+1; end;

    Change red part to change the guild recruitment message.
    That sounds pretty good actually. Do you know how to chnage t where it invites levels 70-80 only?

  11. #101
    BonutDot's Avatar Contributor
    Reputation
    235
    Join Date
    Aug 2006
    Posts
    418
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /who 70-80

    /script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hello "..c.."! <my guild> is now recruiting! We have a cool tabard, join now!","WHISPER",nil,c); GuildInvite(c); end; i=i+1; end;

  12. #102
    Stans Dad's Avatar Banned
    Reputation
    404
    Join Date
    Dec 2007
    Posts
    743
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ya that is nifty. But, that is 100% automated. The addon is nice if you don't want to have a message or if you want automation.

  13. #103
    xGen's Avatar Member
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BonutDot View Post
    /who 70-80

    /script n=GetNumWhoResults(); i=1; while(i<n+1) do c,g=GetWhoInfo(i); if(g=="") then SendChatMessage("Hello "..c.."! <my guild> is now recruiting! We have a cool tabard, join now!","WHISPER",nil,c); GuildInvite(c); end; i=i+1; end;
    Could you tell me where to put that please?

  14. #104
    Daxa's Avatar Active Member
    Reputation
    15
    Join Date
    May 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Think Ill try it just for the lulz.

  15. #105
    Name0's Avatar Member
    Reputation
    2
    Join Date
    Apr 2009
    Posts
    73
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tHIS IS SO MUCH FUN!

Page 7 of 14 FirstFirst ... 34567891011 ... LastLast

Similar Threads

  1. How do I +rep other people?
    By Deewleer in forum World of Warcraft General
    Replies: 5
    Last Post: 12-04-2010, 05:18 AM
  2. How in the world are people mining my nodes if i cant see them
    By UNREST in forum World of Warcraft General
    Replies: 5
    Last Post: 07-15-2009, 11:45 AM
  3. [Trick] How to get many retarded people leave their guild
    By Aradroth in forum World of Warcraft Guides
    Replies: 6
    Last Post: 12-28-2007, 10:12 PM
  4. How can i get more people to join my server properly ?
    By Wheeze201 in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 12-24-2007, 12:15 AM
All times are GMT -5. The time now is 12:17 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