[GUILD]Useful info for GuildMaster/Officers about mass kicking,pro/demoting via macro menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 39
  1. #16
    K1boRG's Avatar Contributor
    Reputation
    221
    Join Date
    Sep 2007
    Posts
    638
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /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

    This will kick all who are longer then 7 days offline.
    * * * Give +Rep to person who helped you or any other way made you laugh / happy * * *
    * * * Looking for someone who could help with 'good' comments on one YouTube video. - possible reward - PM for more info * * *

    [GUILD]Useful info for GuildMaster/Officers about mass kicking,pro/demoting via macro
  2. #17
    th2pun1sh3r's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can u make a macro to calculate cash inflow?

  3. #18
    K1boRG's Avatar Contributor
    Reputation
    221
    Join Date
    Sep 2007
    Posts
    638
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    huh!????????????
    * * * Give +Rep to person who helped you or any other way made you laugh / happy * * *
    * * * Looking for someone who could help with 'good' comments on one YouTube video. - possible reward - PM for more info * * *

  4. #19
    danbirk's Avatar Contributor
    Reputation
    247
    Join Date
    Jun 2010
    Posts
    575
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    to change this to kick all inactive of 30 days?
    just change the "7" in the macro to "30" ?

  5. #20
    Faulen's Avatar Contributor
    Reputation
    193
    Join Date
    Mar 2008
    Posts
    260
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol I used one of the macors. And in 5 minutes everyone it kicked was back in the guild. O.o

  6. #21
    nightcracker's Avatar Contributor
    Reputation
    102
    Join Date
    Jan 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haha woops, made on little mistake in my macro. Updated version:
    Code:
    /run local limit=30 for i=1,GetNumGuildMembers(1)do local y,m,d,h=GetGuildRosterLastOnline(i)y,m,d,h,n=y or 0,m or 0,d or 0,h or 0,GetGuildRosterInfo(i)if ((y*12)+m)*30.5+d>=limit then GuildUninvite(n)end end
    Print version:
    Code:
    /run local limit=30 for i=1,GetNumGuildMembers(1)do local y,m,d,h=GetGuildRosterLastOnline(i)y,m,d,h,n=y or 0,m or 0,d or 0,h or 0,GetGuildRosterInfo(i)if ((y*12)+m)*30.5+d>=limit then print(n)end end
    Three things are certain,
    Death, taxes and site not found,
    You, victim of one.

  7. #22
    Faulen's Avatar Contributor
    Reputation
    193
    Join Date
    Mar 2008
    Posts
    260
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What does the macro above do?

    It kicked everyone online -.- lol
    Last edited by Faulen; 12-28-2010 at 08:15 PM.

  8. #23
    th2pun1sh3r's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you make something to display realtime cashflow information for guild perK?

  9. #24
    Faulen's Avatar Contributor
    Reputation
    193
    Join Date
    Mar 2008
    Posts
    260
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    /run for i=1,GetNumGuildMembers(true) do local name,_,rank,level = GetGuildRosterInfo(i); if level == 80 and rank > 3 then GuildPromote(name); end end

    With this one could I make it say maybe from level 1-60 be demoted to the lowest guild rank?
    So it might look like this?

    Code:
    /run for i=1,GetNumGuildMembers(true) do local name,_,rank,level = GetGuildRosterInfo(i); if level == 1-60 and rank > 6 then GuildDemote(name); end end

  10. #25
    Samzonx's Avatar Member
    Reputation
    12
    Join Date
    Jul 2008
    Posts
    35
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by th2pun1sh3r View Post
    Can you make something to display realtime cashflow information for guild perK?
    i dont see how this is relavent or pretains to this thread at all, please... post a new thread with a request i guess.. lol and thanks for trying to help me out here K1boRG, i really appreciate it, im going to mess around with this macro in a few and see what happens (I run a 750+ person guild, i hope to god this doesnt mess up LOL)
    Last edited by Samzonx; 01-03-2011 at 03:05 AM.

  11. #26
    Forgiving's Avatar Contributor
    Reputation
    250
    Join Date
    Mar 2008
    Posts
    1,075
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Going to attempt this in a few secondeds.

  12. #27
    Kaidroth's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to do a macro that kicks a random player (it's just a game in our guild), but I'm failing hard. Can you help me please ?

  13. #28
    fattomhanks's Avatar Member
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would it be possible to combine the scripts to make it kick people below a certain rank who have also been offline for x amount of days?

  14. #29
    HI5's Avatar ( ͡° ͜ʖ ͡°) Some Random Leacher
    Authenticator enabled
    Reputation
    1053
    Join Date
    Dec 2007
    Posts
    5,143
    Thanks G/R
    542/299
    Trade Feedback
    217 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fattomhanks View Post
    Would it be possible to combine the scripts to make it kick people below a certain rank who have also been offline for x amount of days?
    This one please


  15. #30
    empalinen's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Script that promotes from 1rank rank to 2rank rank above the rank1? possible? please gief

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. More Guild/Info For google spreadsheets
    By rickyis911 in forum World of Warcraft General
    Replies: 7
    Last Post: 02-29-2016, 05:45 AM
  2. [Event] Using event for guild rep
    By kozzzan in forum World of Warcraft Guides
    Replies: 0
    Last Post: 02-05-2012, 04:50 AM
  3. Macro halp plz (+rep for useful info :3)
    By Aldun in forum WoW UI, Macros and Talent Specs
    Replies: 3
    Last Post: 02-27-2011, 08:56 AM
  4. Replies: 11
    Last Post: 10-18-2006, 12:23 AM
All times are GMT -5. The time now is 03:37 PM. 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