A World of Warcraft addon that replies to guild queries with Auctionator prices.
- Listens for messages in guild chat starting with
?followed by an item link - Returns the current auction house price from Auctionator data
- Uses leader election to ensure only one guild member responds
- Requires the Auctionator addon to function
- Download the latest release from CurseForge, WowInterface, or GitHub Releases
- Extract to your
World of Warcraft/_retail_/Interface/AddOns/directory - Make sure you have Auctionator installed
- Restart World of Warcraft or reload UI with
/reload
In guild chat, type ? followed by an item link (Shift+Click an item):
?[Item Name]
The addon will automatically respond with the current auction house price if available.
This addon uses the BigWigs packager for automated releases:
- Ensure all changes are committed
- Create a git tag with version number:
git tag v1.0.0 git push origin v1.0.0
- GitHub Actions will automatically:
- Package the addon
- Create a GitHub release
- Upload to CurseForge (requires
CF_API_KEYsecret) - Upload to WowInterface (requires
WOWI_API_TOKENsecret)
For automated uploads, configure these GitHub repository secrets:
CF_API_KEY- CurseForge API tokenWOWI_API_TOKEN- WowInterface API token
Without these secrets, the packager will still create a GitHub release with the packaged addon.
GuildPriceCheck.toc- Addon metadata and file listcore.lua- Main addon logic.pkgmeta- BigWigs packager configuration.github/workflows/release.yml- Automated release workflow
See repository for license information.