Thread Tools Display Modes
10-07-07, 04:19 AM   #1
Maziel
A Deviate Faerie Dragon
 
Maziel's Avatar
AddOn Author - Click to view addons
Join Date: May 2007
Posts: 18
Auto Decline Arena Invites?

Good evening,

I'm just wondering if some guru out there could come up with a quick .lua file that would automatically decline any join Arena team request that is send.

Nothing fancy, just a simple decline and hide that pop up window.

Thanks in advanced.
  Reply With Quote
10-07-07, 05:58 AM   #2
JJohnson1988
A Deviate Faerie Dragon
 
JJohnson1988's Avatar
Join Date: Jun 2007
Posts: 10
I don't think there's a cancel arena invite function in the API, though I may be wrong.
  Reply With Quote
10-07-07, 08:52 AM   #3
mulesh
A Chromatic Dragonspawn
 
mulesh's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2006
Posts: 193
Code:
local ATC = CreateFrame("Frame", "ArenaTeamCancel", UIParent);

ATC:RegisterEvent("ARENA_TEAM_INVITE_REQUEST");

ATC:SetScript("OnEvent", function(self, event)	
  HideUIPanel(StaticPopup1);
  DeclineArenaTeam();
  DEFAULT_CHAT_FRAME:AddMessage("Declining Arena Team Invite.");
end);
Something like that should work for you.
__________________
"Don"t tase me bro!" ~ Andrew Meyer
  Reply With Quote
10-07-07, 10:38 AM   #4
Maziel
A Deviate Faerie Dragon
 
Maziel's Avatar
AddOn Author - Click to view addons
Join Date: May 2007
Posts: 18
Originally Posted by mulesh
Code:
local ATC = CreateFrame("Frame", "ArenaTeamCancel", UIParent);

ATC:RegisterEvent("ARENA_TEAM_INVITE_REQUEST");

ATC:SetScript("OnEvent", function(self, event)	
  HideUIPanel(StaticPopup1);
  DeclineArenaTeam();
  DEFAULT_CHAT_FRAME:AddMessage("Declining Arena Team Invite.");
end);
Something like that should work for you.
Thanks Mulesh.

First time i tried this I forgot to save the file >_< lol

Works great mate!

I thank you sooo much!

Last edited by Maziel : 10-07-07 at 10:54 AM.
  Reply With Quote
10-07-07, 06:53 PM   #5
mulesh
A Chromatic Dragonspawn
 
mulesh's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2006
Posts: 193
Your welcome
Glad it works for you.
__________________
"Don"t tase me bro!" ~ Andrew Meyer
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Auto Decline Arena Invites?


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