WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Search/Requests (https://www.wowinterface.com/forums/forumdisplay.php?f=6)
-   -   Auto accept group invites...? (https://www.wowinterface.com/forums/showthread.php?t=41370)

Redz1187 09-06-11 08:57 PM

Auto accept group invites...?
 
Hey all I was wondering if theres an addon that auto accept group invites whenever you'r afk.

Ketho 09-07-11 07:27 AM

1 Attachment(s)
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

Redz1187 09-09-11 12:03 AM

Thanks a lot!!! It worked.

djheffa 11-01-21 07:10 PM

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

djheffa 11-01-21 07:13 PM

mount farm boe
 
i want to use this for custom finder when i farm mounts in bfa

djheffa 11-02-21 07:55 AM

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


All times are GMT -6. The time now is 10:17 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI