Thread Tools Display Modes
01-19-13, 03:32 AM   #1
cremor
A Murloc Raider
Join Date: Jun 2008
Posts: 9
Searching Addon for accept queue popup timeout

Hi,

is there any Addon out there that shows the remaining seconds I have to accept a Dungeon/LFR queue popup? Sometimes the queue pops in the middle of a pet battle or just before I finish a daily quest and I'd like to know how long I still have time to accept it.
  Reply With Quote
01-19-13, 04:26 AM   #2
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
I know that DeadlyBossMods has this, it can't be too difficult to write yourself though.

Something like:

Code:
local value

-- code to create status bar omitted
...

someStatusBar:Hide()

someStatusBar:SetScript("OnUpdate", function(self, elapsed)
	value = value - elapsed

	if value <= 0 then
		self:Hide()
		value = 60
	else
		self:SetValue(value)
	end
end)

local f = CreateFrame("Frame")
f:RegisterEvent("LFG_PROPOSAL_SHOW")
f:SetScript("OnEvent", function()
	someStatusBar:Show()
end)
Just the basics of course, you'll want to get a proper bar and account for LFG_PROPOSAL_FAILED and LFG_PROPOSAL_SUCCEEDED too.

Last edited by Haleth : 01-19-13 at 04:55 AM.
  Reply With Quote
01-19-13, 04:47 AM   #3
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 822
http://www.wowinterface.com/download...astingBar.html
__________________
The cataclysm broke the world ... and the pandas could not fix it!
  Reply With Quote
01-19-13, 05:20 AM   #4
cremor
A Murloc Raider
Join Date: Jun 2008
Posts: 9
Thanks for your suggestions, that brought me to an idea. I could simply start a custom BigWigs bar based on the event.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Searching Addon for accept queue popup timeout


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