1. #1

    Cool Mass Guild Remover?

    Hi I'm the GM if a guild that has about 1000 members, I have allot of inactive members that I would like to remove, is there an addon that will help me do this very fast ?

  2. #2
    High Overlord
    10+ Year Old Account
    Join Date
    Aug 2011
    Location
    Norway
    Posts
    108
    You'll have to do it yourself, Addons that automates things for you are not allowed.
    Fienden sitt våpen kastet, opp visiret for,
    vi med undren mot ham hastet, ti han var vår bror.
    Drevne frem på stand av skammen gikk vi søderpå;
    nu vi står tre brødre sammen,
    og skal sådan stå!

  3. #3
    Quote Originally Posted by Likfarer View Post
    You'll have to do it yourself, Addons that automates things for you are not allowed.
    Or should I say an addon that will let me select multiple members on the list and then I could click a button each time to remove a member?

  4. #4
    I'm not sure if these still work for mass kicking based on last login.

    Code:
    /run if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) print((GetGuildRosterInfo(i)),y,m,d) if y then if y>0 or m>0 or d>7 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    It's set on more than 7 days now. You can change it to whatever day you want. Not weeks, so you have to set it in days. For example

    Code:
    /run if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) print((GetGuildRosterInfo(i)),y,m,d) if y then if y>0 or m>0 or d>14 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    This is 14days (2weeks)

    Code:
    /run if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) print((GetGuildRosterInfo(i)),y,m,d) if y then if y>0 or m>0 or d>28 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    This is 1 month

  5. #5
    Such an add-on would be immediately abused by account hackers. Get your officers to help you or just do it in batches.

  6. #6
    I know I've seen such an addon on Curse...can't remember the name of it though.

    ---------- Post added 2012-02-16 at 12:17 PM ----------

    Found it...fairly simple to find.

    http://www.curse.com/addons/wow/guild-kicker
    SkoorbVyvanseKarmann

  7. #7
    Deleted
    It is absolutely possible to do it with an addon or macro and it is also absolutely allowed.

    Likfarer has no clue I'm sorry to say.
    Anything you can do with lua is allowed unless Blizzard specifically states otherwise (for example cross-faction communication).

    That says nothing about whether it is also wise to macro it as any mistake is going by definition to have a broad scope
    (an error in your code can end up removing alot of guild members you didn't intend to remove)

  8. #8
    Thanks this worked Perfectly!


    Quote Originally Posted by Lyaral View Post
    I'm not sure if these still work for mass kicking based on last login.

    Code:
    /run if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) print((GetGuildRosterInfo(i)),y,m,d) if y then if y>0 or m>0 or d>7 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    It's set on more than 7 days now. You can change it to whatever day you want. Not weeks, so you have to set it in days. For example

    Code:
    /run if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) print((GetGuildRosterInfo(i)),y,m,d) if y then if y>0 or m>0 or d>14 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    This is 14days (2weeks)

    Code:
    /run if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) print((GetGuildRosterInfo(i)),y,m,d) if y then if y>0 or m>0 or d>28 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    This is 1 month

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •