- Home
- Downloads
-
Addons & Mods
Featured
World of Warcraft
4,842 Addons
-
Popular Downloads
- Top World of Warcraft Addons
- Top Rift Addons
- Top Skyrim Mods
- Top Minecraft Server Mods
- Top Terraria Maps
- Top Starcraft II Maps
- Top Runes of Magic Addons
- Top Warhammer Online Addons
- Top Age of Conan Addons
-
- Curse Client
- Premium
- News
- Giveaways
- Forums
ReadyCheckAnnouncer
- 1 Like
- World of Warcraft
- 12,787 Downloads
- Supports: 4.3
- 2 Average Daily Downloads
- Comments
- Created 11/14/2007 4:41:48 AM
- Updated 12/19/2011 9:49:17 AM
- 59 Favorites
- Project Site
- License: All Rights Reserved
- Release Type: Release
- Newest File: r40-release
About ReadyCheckAnnouncer
Small addon to make readychecking easier:
- Echo readycheck results to party/raid: Who's AFK, Who's not ready.
- Display timer bar while readychecks are running (even when someone else initiates them)
- Add "/rc" as an alias for "/readycheck"
- Ignore "standby" people in raid groups (g3+ for raid size 6-18, g6+ for raid size 19-34)
- Raid officers running ReadyCheckAnnouncer will help announce even if they are not the ones initiating the readycheck. (Can be disabled with "/rc off")
------------------------------------------------------------------------
r41 | mikk | 2011-12-12 12:42:18 +0000 (Mon, 12 Dec 2011) | 1 line
Changed paths:
A /tags/r40-release (from /trunk:40)
Tagging as r40-release
------------------------------------------------------------------------
r40 | mikk | 2011-12-12 12:40:55 +0000 (Mon, 12 Dec 2011) | 2 lines
Changed paths:
M /trunk/ReadyCheckAnnouncer.lua
M /trunk/ReadyCheckAnnouncer.toc
- TOC 40300
- Fix LFR problem with reporting people from other realms as AFK
------------------------------------------------------------------------
| File Name | Release Type | Game Version | Downloads | Date |
|---|---|---|---|---|
| 42-beta | Beta | 4.3 | - | 12/19/2011 9:49:17 AM |
| r40-release | Release | 4.3 | 113 | 12/12/2011 6:42:19 AM |
| r38-release | Release | 4.1 | 2,270 | 5/3/2011 5:03:12 PM |
| r36-release | Release | 4.0.1 | 2,340 | 11/1/2010 11:23:57 AM |
| 1.00-30100 | Release | 3.1.0 | 1 | 4/30/2009 3:21:54 AM |
| 1.00-30000.2 | Release | 3.0.2 | - | 10/28/2008 4:55:07 AM |
| 1.00-30000 | Release | 3.0.2 | 451 | 10/27/2008 8:18:07 PM |
| ReadyCheckAnnouncer-r54637 | Beta | 2.3.3 | - | 11/14/2007 12:01:50 AM |
| ReadyCheckAnnouncer-r36647 | Beta | 2.1.3 | - | 6/27/2007 6:47:05 AM |
| ReadyCheckAnnouncer-r35363 | Beta | 2.0.12 | - | 5/13/2007 1:22:19 PM |
| ReadyCheckAnnouncer-r35221 | Beta | 2.0.12 | 1 | 5/12/2007 7:04:08 AM |

Comments
need to make sure this is update for 4.3
It is now. It had a glitch in LFR that i needed to fix.
thanks
To get the bar to show up, and announce when everyone is ready
self.timer:SetScript("OnUpdate", function(self, arg1)
function RCAnn.OnEvent(self, event, ...)
local self=RCAnn;
local arg1 = ...;
To get it to announce AFK players
RCAnn:Say("Ready check: " .. arg1);
RCAnn:StopTimer();
As a side project you can add the following to have it work properly when someone clicks not ready (right now it waits the full 30s before displaying the message, even if the everyone has responded).
local patFinished = "^" .. READY_CHECK_FINISHED .. "$";
elseif (arg1:find(patFinished)) then
RCAnn:StopTimer();
If you implement everything RCAnn.OnEvent should now look like this
function RCAnn.OnEvent(self, event, ...)
if(event=="CHAT_MSG_SYSTEM") then
local arg1 = ...;
if(arg1:find(patAFK)) then
RCAnn:Say("Ready check: " .. arg1);
RCAnn:StopTimer();
elseif(arg1:find(patNotReady)) then
local _,_,person = arg1:find(patNotReady);
RCAnn.notready = ((RCAnn.notready and RCAnn.notready .. ", ") or "") .. person;
-- RCAnn:Say("Ready check: " .. arg1);
elseif(arg1:find(patStart)) then
RCAnn:StartTimer();
elseif(arg1:find(patOtherStart)) then -- if someone else starts a readycheck
RCAnn:StartTimer(); -- this just displays the timer so we know how long we have until we have to click
elseif(arg1:find(patFinished)) then
RCAnn:StopTimer();
elseif(arg1:find(patReady)) then
RCAnn:Say("Ready check: " .. arg1);
RCAnn:StopTimer();
end
end
end
Can you please post an updated lua file? I'm not very good editing this lua files, i don't know what to do.