Guild gold menu

User Tag List

Thread: Guild gold

Results 1 to 8 of 8
  1. #1
    eloivanelst's Avatar Contributor
    Reputation
    127
    Join Date
    Oct 2009
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Guild gold

    So yeah. I just bought a level 25 guild and I am looking for some sort of guide to help me make money with the guild. Tips such as what addons to use to invite new players and manage rank/kick players after x time etc. Does anyone know if such guide exists?

    Guild gold
  2. #2
    esp3rae's Avatar Knight-Lieutenant
    Reputation
    21
    Join Date
    Feb 2013
    Posts
    379
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Use the Super Invit Guild addon with a good recruiting message.

    Try to recruit a lot of group with 3 players who will do dungeons.


  3. #3
    eloivanelst's Avatar Contributor
    Reputation
    127
    Join Date
    Oct 2009
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Upping this. I want to know if there's an addon out there which can kick players who have been offline for X amount of time.

  4. #4
    King Protos's Avatar Active Member
    Reputation
    40
    Join Date
    Sep 2007
    Posts
    516
    Thanks G/R
    2/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eloivanelst View Post
    Upping this. I want to know if there's an addon out there which can kick players who have been offline for X amount of time.
    Open guild pannel
    Sort by last login date
    Kick everyone who hasn't been logged in in over a month

    Seems easy enough to not need an addon to do that.


  5. #5
    joost138's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    47
    Thanks G/R
    1/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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
    That's one month. Or 28 days at least. Change y>"?" m>"?" and d>"?" to whatever you like to kick people.

    Add-on that does the exact same thing: http://www.curse.com/addons/wow/guild-kicker

  6. #6
    gippy's Avatar Elite User
    Reputation
    436
    Join Date
    Jun 2008
    Posts
    1,322
    Thanks G/R
    293/139
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eloivanelst View Post
    Upping this. I want to know if there's an addon out there which can kick players who have been offline for X amount of time.

    Yeah guild kicker is what i use, it works well. If it gets stuck, follow these instruction and change the line with notepad:

    For those of you having issues since the last patch, you can fix this yourself if you're comfortable editing text files. Open the GuildKicker.lua file and clear out line 365 which states:

    GuildKicker:Hide()

    Once that line is gone the addon seems to work as normal.

    By no means am I an expert at Wow addons - so I don't know if there are other ramifications from this (I don't see any) - but don't be mad at me if you don't get the same results!

    Hope it works for you
    You can also change the line that says 85 to 90 to get it to kick 90s.

  7. #7
    eloivanelst's Avatar Contributor
    Reputation
    127
    Join Date
    Oct 2009
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by joost138 View Post
    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
    That's one month. Or 28 days at least. Change y>"?" m>"?" and d>"?" to whatever you like to kick people.

    Add-on that does the exact same thing: Guild Kicker - Guild - World of Warcraft Addons - Curse
    So 60 days would be:
    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>60 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    Correct? Or..

    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>2 or d>0 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    Originally Posted by gippy View Post
    Yeah guild kicker is what i use, it works well. If it gets stuck, follow these instruction and change the line with notepad:



    You can also change the line that says 85 to 90 to get it to kick 90s.
    Guild Kicker didn't work for me (even after editting the LUA file). It wants to kick 4 people out, instead of the 200 inactive people in my guild.

  8. #8
    Nevodark's Avatar Contributor
    Reputation
    233
    Join Date
    Sep 2012
    Posts
    378
    Thanks G/R
    22/22
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eloivanelst View Post
    So 60 days would be:
    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>60 then GuildUninvite(GetGuildRosterInfo(i)) end end end
    Correct? Or..

    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>2 or d>0 then GuildUninvite(GetGuildRosterInfo(i)) end end end


    Guild Kicker didn't work for me (even after editting the LUA file). It wants to kick 4 people out, instead of the 200 inactive people in my guild.

    The first one is correct for 60 days the second one is correct for 2 months.

    /run for i=1,GetNumGuildMembers(true) do local name,_,_,level = GetGuildRosterInfo(i); if level >= 1 and level <= 30 then GuildUninvite(name); end end

    Will allso kick people within X level range,

Similar Threads

  1. [Event] Fast wow weekly guild gold!
    By Thimiaras in forum World of Warcraft Guides
    Replies: 9
    Last Post: 09-23-2013, 12:27 PM
  2. [Selling] 90Dk,Shaman,Mage 89 Rogue. Lvl25 guild!, Gold! Sylvanas Horde! 7k Ach!~
    By retoxed in forum WoW-EU Account Buy Sell Trade
    Replies: 4
    Last Post: 01-22-2013, 07:21 PM
  3. Hi just a gold guilde that might help some of you
    By nickbw in forum World of Warcraft Guides
    Replies: 10
    Last Post: 02-19-2007, 08:09 PM
All times are GMT -5. The time now is 07:22 AM. 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