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

User Tag List

Page 5 of 14 FirstFirst 123456789 ... LastLast
Results 61 to 75 of 206
  1. #61
    Slaughto's Avatar Active Member
    Reputation
    15
    Join Date
    Jan 2007
    Posts
    124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok. So, I'm a little difficultly, I want it to invite only people from 60-80, and I've changed both the start look level and end level but I still get a bunch of level 1's in the guild... And I don't want 'em. How do I make it so ONLY 60-80's are invited into my guild?

    [How to] Invite hundreds of people to a guild QUICK!
  2. #62
    linkan's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to do if i only want to invite players between 71 to 80? this isnt working:


    local levelStart = 71;
    local levelEnd = 80;

    So anyone know how to do?

  3. #63
    feymon's Avatar Member
    Reputation
    8
    Join Date
    Feb 2008
    Posts
    40
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OMFG i invited someone and he gave me 2800 gold

  4. #64
    gfour's Avatar Active Member
    Reputation
    72
    Join Date
    Feb 2008
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haha nice, I love this invited about 200 people now, got a guild bank hopefully they donate MOHAHAH +rep

  5. #65
    jagex's Avatar Member
    Reputation
    16
    Join Date
    Nov 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This will make it so you will invite DK's too.



    --
    -- RapeDotty by Eggsampler
    --
    -- Usage: /RapeDotty [start/stop]
    --

    local levelStart = 1;
    local levelEnd = 80;
    local searching = false;
    local lastSearchTime = 0;
    local levelIncrement = 1;

    local longSearch = false;
    local uberLongSearch = false;

    local lastClass = 1;
    local classes = { "Priest", "Warrior", "Warlock", "Druid", "Rogue", "Mage", "Hunter", "Paladin", "Shaman", "Death Knight" };

    local lastRace = 1;
    local racesA = { "Gnome", "Human", "Night Elf", "Draenei", "Dwarf" };
    local racesH = { "Undead", "Orc", "Troll", "Blood Elf", "Tauren" };

    function RapeDotty_Message(thing)
    DEFAULT_CHAT_FRAME:AddMessage("|cFF00CCFFRapeDotty: |cFFFFFFFF" .. thing);
    end

    function RapeDotty_Command(args)
    if (args == "stop") then
    RapeDotty_Message("Stopping");
    RapeDotty_StopSearch();
    elseif (args == "start") then
    if (CanGuildInvite() == false) then
    RapeDotty_Message("You can't ginvite you fkn downs.");
    return;
    end;
    RapeDotty_Message("Starting");
    levelStart = 1;
    longSearch = false;
    uberLongSearch = false;
    RapeDotty_SendSearch();
    else
    RapeDotty_Message("RapeDotty by Eggsampler");
    RapeDotty_Message("Usage: /RapeDotty [start/stop]");
    end
    end

    function RapeDotty_OnEvent(args)
    if (searching == false) then return; end
    local numWhos = GetNumWhoResults();
    if (longSearch == true) then
    if (uberLongSearch == true) then
    lastRace = lastRace + 1;
    if (racesH[lastRace] == nil) then
    --RapeDotty_Message("finished UBER ls, back to ls");
    uberLongSearch = false;
    lastClass = lastClass + 1;
    if (classes[lastClass] == nil) then
    --RapeDotty_Message("finished ls too, inc lvl");
    longSearch = false;
    levelStart = levelStart + levelIncrement;
    end
    end
    else
    if (numWhos >= 50) then
    --RapeDotty_Message("50 ls, doing UBER ls");
    lastRace = 1;
    uberLongSearch = true;
    return; -- dont invite people here
    end
    --RapeDotty_Message("ls = true, doing inc");
    lastClass = lastClass + 1;
    if (classes[lastClass] == nil) then
    --RapeDotty_Message("finished ls, inc lvl");
    longSearch = false;
    levelStart = levelStart + levelIncrement;
    end
    end
    else
    if (numWhos >= 50) then
    --RapeDotty_Message("50, doing ls");
    lastClass = 1;
    longSearch = true;
    return; -- dont invite people here
    else
    --RapeDotty_Message("doing norm invite, inc lvl");
    longSearch = false;
    levelStart = levelStart + levelIncrement;
    end
    end
    RapeDotty_InviteWhoResults();
    end

    function RapeDotty_OnUpdate(args)
    if (searching == true and time() > lastSearchTime + 5) then
    if (CanGuildInvite() == false) then
    RapeDotty_Message("You can't invite anymore, stopping.");
    RapeDotty_StopSearch();
    elseif (levelStart <= levelEnd) then
    RapeDotty_SendSearch();
    else
    RapeDotty_StopSearch();
    RapeDotty_Message("Finished.");
    end
    end
    end

    function RapeDotty_SendSearch()
    SetWhoToUI(1);
    FriendsFrame:UnregisterEvent("WHO_LIST_UPDATE");
    local whoString = "g-\"\" " .. levelStart .. "-" .. levelStart + levelIncrement - 1;
    if (longSearch == true) then
    whoString = whoString .. " c-\"" .. classes[lastClass] .. "\"";
    end
    if (uberLongSearch == true) then
    whoString = whoString .. " r-\"";
    if (UnitFactionGroup("player") == "Horde") then
    whoString = whoString .. racesH[lastRace];
    else
    whoString = whoString .. racesA[lastRace];
    end
    whoString = whoString .. "\"";
    end
    RapeDotty_Message("who: " .. whoString);
    searching = true;
    lastSearchTime = time();
    SendWho(whoString);
    end

    function RapeDotty_StopSearch()
    searching = false;
    FriendsFrame:RegisterEvent("WHO_LIST_UPDATE");
    SetWhoToUI(0);
    end

    function RapeDotty_InviteWhoResults()
    local numWhos = GetNumWhoResults();
    for index = 1, numWhos, 1 do
    charname, guildname, level, race, class, zone, classFileName = GetWhoInfo(index);
    if (guildname == "") then
    GuildInvite(charname);
    --RapeDotty_Message("inv " .. charname);
    end
    end
    end

    SLASH_RapeDotty1 = "/rapedotty";
    SLASH_RapeDotty2 = "/rd";
    SlashCmdList["RapeDotty"] = RapeDotty_Command;

    local dummy = CreateFrame("Frame", nil);
    dummy:SetScript("OnEvent", RapeDotty_OnEvent);
    dummy:SetScript("OnUpdate", RapeDotty_OnUpdate);
    dummy:RegisterEvent("WHO_LIST_UPDATE");

  6. #66
    zoiaum's Avatar Member
    Reputation
    13
    Join Date
    Oct 2008
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ahaha, i got a 100+ ppl guild in like 1 hour, really fun addon.
    Oh also got flamed hard on /2 lol

  7. #67
    raze1225's Avatar Member
    Reputation
    29
    Join Date
    Mar 2008
    Posts
    365
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    repost btw.....

  8. #68
    Archonox's Avatar Active Member
    Reputation
    15
    Join Date
    Jan 2007
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My WoW account got banned for 3 hours for harassing players with ginvies, idc tho it was mad fun lol.

  9. #69
    Warriar's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can you get like perma banned for this?

  10. #70
    jagex's Avatar Member
    Reputation
    16
    Join Date
    Nov 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Warriar View Post
    can you get like perma banned for this?
    Yes to an extent. If you get a 3 hour suspension for spamming then do it again. Then maybe. If you do it once a week, you wont get banned.

  11. #71
    Dombo's Avatar Banned
    Reputation
    622
    Join Date
    Nov 2008
    Posts
    1,421
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice addon! Really useful for those who want a guild of their own.

  12. #72
    pixie12's Avatar Active Member
    Reputation
    16
    Join Date
    Sep 2007
    Posts
    425
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great tool, got me from 10 members to 200 in 1 hour

    +3 rep

  13. #73
    khaled1994's Avatar Active Member
    Reputation
    23
    Join Date
    May 2007
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    link is broken :/ can u rehost please need new download link

  14. #74
    emericaman012's Avatar Sergeant
    Reputation
    3
    Join Date
    Nov 2009
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    links not broken, just got it, will try soon :P
    ~~ Cool Story Bro.... ~~

  15. #75
    okko's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    damn that's helpful... people might think what the **** is going on if the addon keeps spamming him of few times?

Page 5 of 14 FirstFirst 123456789 ... 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 04:52 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search