Thread Tools Display Modes
11-14-11, 07:49 AM   #1
Wimpface
A Molten Giant
 
Wimpface's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 648
An addon to play sound on logout?

Is there any addon out there that plays a sound when the game automatically logs you out due to inactivity? I'm currently camping Aeonaxx in Deepholm and while doing this I watch a lot of movies/TV.

NPCScan will let me know when Aeonaxx shows up, but is there any addon that will help me stay in the game?

Tabbing in every now and then would be an option if I wasn't in my bed watching.
__________________
All I see is strobe lights blinding me in my hindsight.
  Reply With Quote
11-14-11, 09:46 AM   #2
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Code:
local f = CreateFrame("Frame")
f:RegisterEvent("PLAYER_LOGOUT")
f:SetScript("OnEvent", function()
	PlaySoundFile(soundpath)
end)
I suppose?
  Reply With Quote
11-14-11, 12:14 PM   #3
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
afaik PlaySoundFile also stops playing after being logged out

You could maybe track for the IDLE_MESSAGE globalstring
Code:
IDLE_MESSAGE = "You have been inactive for some time and will be logged out of the game. If you wish to remain logged in, hit the cancel button.";
Code:
local function OnEvent(self, event, msg)
	if msg == IDLE_MESSAGE then
		PlaySoundFile(soundpath)
	end
end

local f = CreateFrame("Frame")
f:RegisterEvent("CHAT_MSG_SYSTEM")
f:SetScript("OnEvent", OnEvent)
  Reply With Quote
11-18-11, 06:22 AM   #4
Wimpface
A Molten Giant
 
Wimpface's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 648
I'll try this. Thank you both.
__________________
All I see is strobe lights blinding me in my hindsight.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » An addon to play sound on logout?


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