Description
CC Alert
CC Alert is a lightweight and customizable addon for World of Warcraft that helps players stay aware of enemy crowd control (CC) casts in PvP battles. Designed to improve reaction times, this addon displays real-time alerts for critical CC spells.
Features
- Real-Time Alerts: Receive visual and audio notifications when enemies cast key CC spells like Polymorph, Fear, Cyclone, and more.
- Customizable Alerts: Adjust the size and position of alerts to suit your preferences.
- Test Mode: Easily test alert functionality and layout with a simple test button.
- Selective CC Monitoring: Enable or disable specific CC spells through a scrollable settings panel.
Customization
Changing Alert Sounds
Open the
CCAlert.luaFile:- Navigate to your addon directory:
World of Warcraft/ _retail_/ Interface/ AddOns/ CCAlert/ CCAlert.luaModify the Sound Channel:
- Locate the
CCAlertSettingstable and change thesoundChannelvalue to your preferred channel (e.g.,"SFX","Dialog").
CCAlertSettings = { alertSize = 100, alertPosition = { x = 0, y = 150 }, soundChannel = "SFX", -- Options: "Master", "SFX", "Dialog", etc. enabledSpells = { ... }, }- Locate the
Change the Alert Sound (Optional):
- In the
ShowAlertfunction, replace thePlaySoundline with a differentSOUNDKITconstant if desired.lua PlaySound(SOUNDKIT.RAID_WARNING, CCAlertSettings.soundChannel) - Note: A list of available
SOUNDKITconstants can be found on Wowpedia.
- In the
Adding and Customizing CC Spells
Find the Spell ID and Icon:
- Visit Wowhead and search for the desired spell.
- Note the Spell ID and the Icon Name (found below the spell icon on the spell's page).
Edit the
CCAlert.luaFile:- Enable the Spell:
CCAlertSettings.enabledSpells = { [118] = true, -- Polymorph [5782] = true, -- Fear -- Add your new spell ID below [12345] = true, -- New CC Spell }- Add Spell Details:
CC_SPELLS = { [118] = { icon = "Interface\\Icons\\Spell_nature_polymorph", name = "Polymorph" }, [5782] = { icon = "Interface\\Icons\\Spell_shadow_possession", name = "Fear" }, -- Add your new spell details below [12345] = { icon = "Interface\\Icons\\Spell_custom_newcc", name = "New CC Spell" }, }Save and Reload:
- Save the
CCAlert.luafile. - In-game, type
/reloadto apply the changes.
- Save the
Feedback and Support
Your feedback is invaluable! If you encounter issues, have feature requests, or want additional CC spells added, please leave a comment on the addon’s CurseForge page. I strive to implement improvements and address your needs as effectively as possible.
Note: Ensure you always use the latest version of CC Alert and check for updates regularly to benefit from the newest features and bug fixes.


