🧙♂️ WoW Quiz Master
WoW Quiz Master is an interactive, lightweight, and easy-to-use in-game quiz addon designed for Guild events, Raid breaks, and Party games!
Run lore trivia, custom guild quizzes, or hardcore tests with automated answer tracking and real-time scoreboards.
✨ Key Features
- 💬 Automatic Whisper Tracking: Players simply whisper
A,B,C, orDto answer. - ⏱️ Built-in Countdown Timer: Set a response time (e.g., 20s) with live status updates and automatic answer reveals.
- 📢 Multi-Channel Broadcast: Stream questions to Guild, Raid (with Raid Warning support), or Party chat.
- 📊 Live Leaderboard & Discord Export: View real-time standings and copy-paste formatted results directly into your Discord server with one click!
- 📦 Custom Question Packs: Easily import your own question packs via simple
.luafiles inside thePacksfolder. - 🌐 Multilingual Support: Available in English, French, and German (auto-detects game client language).
🎮 How to Use
- Type
/quizin chat to open the Quiz Master panel. - Select your Question Pack, Broadcast Channel, and Timer.
- Click Ask Selected Question to broadcast.
- Let players whisper their answers, then reveal the results!
📝 Adding Your Own Question Packs
Creating custom packs is super simple:
- Create a new
.luafile inside yourPacksfolder (e.g.,Packs/MyTheme.lua). - Add your filename to
GuildeQuiz.toc(e.g.,Packs\MyTheme.lua). - Register your pack inside the file:
local addonName, addonTable = ...
addonTable.RegisterPack("My Awesome Quiz", {
{
question = "What is the capital of the Blood Elves?",
choices = {
A = "Orgrimmar",
B = "Silvermoon City",
C = "Thunder Bluff",
D = "Undercity"
},
answer = "B"
}
})

