Common Issues
This page covers common problems you might encounter and how to resolve them.Window Doesn’t Appear
If the addon window doesn’t show up when using/rcc, try these steps:
- Check if the addon is enabled in the AddOns menu at character selection
- Reload the UI by typing
/reloadin-game - Verify folder structure - ensure the path is
Interface/AddOns/RaidConsumableChecker/
Question Mark Icons
Symptom: Items display a question mark instead of the proper icon. Cause: The icon name in your configuration is incorrect or misspelled. Solution:- Verify the icon name on Wowhead
- Icon names must use underscores, not spaces (e.g.,
INV_Potion_41, notINV Potion 41) - The addon will still function correctly with question marks - they’re intentional fallbacks
Question mark icons don’t break functionality. You can still click items and track buffs normally.
- ❌
INV Potion 41(spaces instead of underscores) - ✅
INV_Potion_41(correct format)
Buff Tracking Not Working
Symptom: Item borders always show red even when you have the buff active. Cause: Buff name doesn’t match the exact in-game buff name. Solution:- Hover over the buff on your buff bar in-game to see its exact name
- Edit the item in the configuration menu and update the Buff Name field
- Buff names are case-sensitive: “Supreme Power” ≠ “supreme power”
- ❌
supreme power(wrong case) - ✅
Supreme Power(correct) - ❌
Arcane intellect(wrong case) - ✅
Arcane Intellect(correct)
Item Counter Shows Wrong Amount
Symptom: The inventory count (e.g., “5/10”) shows 0 or an incorrect number. Cause: Item name doesn’t match the exact name in your bags. Solution:- Check your bags for the exact item name (case-sensitive)
- Update the Item Name field in the configuration menu
- Open and close your bags to trigger an inventory update
- If still incorrect, use
/reloadto force a full inventory refresh
- ❌
major healing potion(wrong case) - ✅
Major Healing Potion(correct) - ❌
flask of supreme power(wrong case) - ✅
Flask of Supreme Power(correct)
Click-to-Use Doesn’t Work
Symptom: Left-clicking an item icon doesn’t use the item. Cause: The Item Name field is empty or incorrect. Solution:- Open the configuration menu and ensure the Item Name field is filled with the exact item name
- Item names are case-sensitive and must match what’s in your bags
- For buff-only tracking (like Mage Intellect), it’s normal for click-to-use not to work since there’s no associated item
If you’re only tracking a buff without an associated consumable item (like class buffs), leave the Item Name field empty. Click-to-use won’t work for these entries.
Borders Always Show Black
Symptom: Item borders are always black instead of showing buff status colors. Cause: This is intentional for items without buff tracking. Explanation:- Black borders indicate items with instant effects (no buff to track)
- Examples: Healing potions, mana potions
- These items don’t grant a buff, so there’s no buff status to display
- Verify that the Buff Name field is filled in the configuration menu
- Check that the buff name is spelled exactly as it appears in-game
Confirmation Dialog Issues
Symptom: You get a warning dialog when clicking an item even though you want to use it. Cause: This is a built-in safety feature. Explanation: The addon warns you before using a consumable when you already have that buff active. This prevents accidental waste of expensive consumables. Solution:- Click “Yes” to use the item anyway (this will overwrite the existing buff)
- Click “No” to cancel
Window Position Resets
Symptom: The window position resets to default after restarting the game. Cause: SavedVariables file isn’t being written properly. Solution:- Exit the game properly - don’t force quit with Alt+F4 or task manager
- Use
/logoutor exit through the game menu to ensure settings save - Window position is stored in
WTF/Account/[AccountName]/SavedVariables/RaidConsumableChecker.lua
Using
/reload preserves your saved window position and doesn’t require a full game restart.Instant Items Showing Red Border
Symptom: Healing or mana potions show a red border instead of black. Cause: A Buff Name is configured for an instant-effect item. Solution:- Open the configuration menu
- Edit the item and clear the Buff Name field
- Leave Buff Name empty for instant effect items like:
- Major Healing Potion
- Major Mana Potion
- Other instant consumables
Installation Issues
Addon Doesn’t Load
Symptoms:- No
/rcccommand available - Addon doesn’t appear in AddOns list at character selection
- Verify folder name is
RaidConsumableChecker(notRaidConsumableChecker-main) - Check folder location is
World of Warcraft/Interface/AddOns/RaidConsumableChecker/ - Verify .toc file exists at
RaidConsumableChecker/RaidConsumableChecker.toc - Restart World of Warcraft completely
Config Button Not Working
Symptom: Clicking the Config button doesn’t open the menu. Solution:- This may indicate a Lua error - check if you have an error display addon installed
- Try
/reloadto refresh the UI - Verify you’re running v2.0.0 or later (config menu was added in v2.0.0)
Performance Issues
Lag When Window Is Open
Note about buff scanning: The addon scans for buffs every 2 seconds while the window is open. This is a performance optimization. If you experience lag:- Close the window when not actively checking consumables
- The window only needs to be open when you want to monitor buff status
- Inventory counts update even when the window is closed
Getting Help
If you’re still experiencing issues after trying these solutions:- Verify you’re running World of Warcraft 1.12.x (Vanilla)
- Check that you’re using the latest version of the addon
- Try disabling other addons to rule out conflicts
- Report the issue on the GitHub repository