Let addons see your completed quests (like Turtle's .queststatus)
Posted: Sun Jul 26, 2026 1:00 pm
TLDR: add a server command that sends a player's completed quest IDs to their addons. Turtle WoW had one, and the addons people still use here were built around it. It would make pfQuest and every quest guide addon much better on OctoWoW, and the server already has the data.
The problem
If you use pfQuest, a quest guide, or any quest helper, it has no way to know from the server side which quests you already finished. The addons can only learn what it watches you do while it is installed and running.
This hits:
On login the server shows:
The ask
Turtle WoW solved this with .queststatus. It replies with hidden addon messages that addons read and players never see in chat:
Why it is worth it
pfQuest and pfQuest-turtle already ship the code that listens for these messages, so matching the old format means existing addons work as-is, with no addon author needing to patch anything. Nothing about the game changes for players who do not use addons, and nothing is shown in chat.
Thanks for reading, and thanks to the team for the work on this server.
The problem
If you use pfQuest, a quest guide, or any quest helper, it has no way to know from the server side which quests you already finished. The addons can only learn what it watches you do while it is installed and running.
This hits:
- anyone who installs or switches quest addons on an existing character
- returning players coming back to an old character
- anyone who reinstalls, wipes settings, or plays on a second PC
- alts levelled before the addon was added
On login the server shows:
So the server tracks completed quests per character. It just reports the count and not the list.Death counter: 0 | Quests completed: 6
The ask
Turtle WoW solved this with .queststatus. It replies with hidden addon messages that addons read and players never see in chat:
Code: Select all
event: CHAT_MSG_ADDON
prefix: TWQUEST
payload: completed quest IDs separated by spaces, sent in batches
pfQuest and pfQuest-turtle already ship the code that listens for these messages, so matching the old format means existing addons work as-is, with no addon author needing to patch anything. Nothing about the game changes for players who do not use addons, and nothing is shown in chat.
Thanks for reading, and thanks to the team for the work on this server.