Thread Tools Display Modes
09-06-11, 08:57 PM   #1
Redz1187
A Deviate Faerie Dragon
Join Date: Feb 2008
Posts: 16
Auto accept group invites...?

Hey all I was wondering if theres an addon that auto accept group invites whenever you'r afk.
  Reply With Quote
09-07-11, 07:27 AM   #2
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
I don't know if there are any addons for specifically this, but this snippet should be able to do what you want
Lua Code:
  1. local f = CreateFrame("Frame")
  2.  
  3. local function OnEvent(self, event)
  4.     if event == "PARTY_INVITE_REQUEST" and UnitIsAFK("player") then
  5.         AcceptGroup()
  6.         f:RegisterEvent("PARTY_MEMBERS_CHANGED")
  7.     elseif event == "PARTY_MEMBERS_CHANGED" then
  8.         StaticPopup_Hide("PARTY_INVITE")
  9.         f:UnregisterEvent("PARTY_MEMBERS_CHANGED")
  10.     end
  11. end
  12.  
  13. f:RegisterEvent("PARTY_INVITE_REQUEST")
  14. f:SetScript("OnEvent", OnEvent)
http://www.mmo-champion.com/threads/...lve-easy-steps
Attached Files
File Type: zip AutoAcceptAFK-v0.1.zip (741 Bytes, 1228 views)

Last edited by Ketho : 09-07-11 at 04:39 PM.
  Reply With Quote
09-09-11, 12:03 AM   #3
Redz1187
A Deviate Faerie Dragon
Join Date: Feb 2008
Posts: 16
Thanks a lot!!! It worked.
  Reply With Quote
11-01-21, 07:10 PM   #4
djheffa
A Murloc Raider
Join Date: Nov 2021
Posts: 5
this is what i looking for can u helpe me

i want like this addon but to auto accept even if not afk and only inv druids and hunter and olny lv 50 and above if this is not posible then only druid and level 50 and above
  Reply With Quote
11-01-21, 07:13 PM   #5
djheffa
A Murloc Raider
Join Date: Nov 2021
Posts: 5
mount farm boe

i want to use this for custom finder when i farm mounts in bfa
  Reply With Quote
11-02-21, 07:55 AM   #6
djheffa
A Murloc Raider
Join Date: Nov 2021
Posts: 5
and only inv 4 members cant be 5 so if 4 and someone leave inv a new one

and only inv 4 members cant be 5 so if 4 and someone leave inv a new one
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Auto accept group invites...?

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off