Friends, I have a macro script that I use in the game that aims to ascertain who this off line for more than 30 days.
I have to create an addon, that whenever I log into the game is made to check?
The script is this
if not CanGuildRemove() then return end for i=1,GetNumGuildMembers() do local y,m,d=GetGuildRosterLastOnline(i) if y then if y>0 or m>0 or d>30 then GuildUninvite(GetGuildRosterInfo(i)) end end end