- 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
ResetEcho
- 0 Likes
- World of Warcraft
- 1,063 Downloads
- Supports: 4.0.1
- 0 Average Daily Downloads
- Comments
- Created 10/8/2008 1:24:31 AM
- Updated 10/12/2010 2:51:48 AM
- 9 Favorites
- Project Site
- License: BSD License
- Release Type: Release
- Newest File: v40000.1
About ResetEcho
ResetEcho does one thing, and one thing only. It automatically outputs to your party chat when you have reset an instance.
There's no configuration and absolutely no options. Just install it, and it does the rest.
Special thanks to Phanx for most of the code.
-- 40000.1: ToC Update. Reworked code slightly and put that beta key to use.
-- 30300.1: ToC Update. Go-go beta key!
-- 30100.1: ToC Update. Added license.
-- 30000.1: Works fine in Wrath.
-- 20400.1: ToC update. Added a couple more strings to echo.
-- 20300.1: ToC update.
-- 20100.1: ToC update.
-- 20003.2: Female Blood Elf
-- 20003.1: Princess Theradras
| File Name | Release Type | Game Version | Downloads | Date |
|---|---|---|---|---|
| v40000.1 | Release | 4.0.1 | 350 | 10/12/2010 2:51:48 AM |
| v30100.1 | Release | 3.1.0 | 446 | 4/23/2009 3:28:32 PM |
| 30000.1 Fixed | Release | 3.0.2 | 302 | 10/10/2008 2:55:44 PM |
Comments
This feature is now also part of SavedInstances:
http://www.curse.com/addons/wow/saved_instances
local success = gsub(INSTANCE_RESET_SUCCESS, "%%s", "")
local failed = gsub(INSTANCE_RESET_FAILED, ".*%%s", "")
local fail_offline = gsub(INSTANCE_RESET_FAILED_OFFLINE, ".*%%s", "")
local fail_zone = gsub(INSTANCE_RESET_FAILED_ZONING, ".*%%s", "")
local f = CreateFrame("Frame")
f:RegisterEvent("CHAT_MSG_SYSTEM")
f:SetScript("OnEvent", function()
if (strfind(arg1, success) or strfind(arg1, failed) or strfind(arg1, fail_offline) or strfind(arg1, fail_zone)) then
0 then
SendChatMessage("ResetEcho - "..arg1, "Raid")
elseif IsPartyLeader() then
SendChatMessage("ResetEcho - "..arg1, "Party")
end
end
end)