docs: add wiki pages for creature_text_options engine tables#1234
Merged
Conversation
Add documentation for the two new DB tables introduced by azerothcore/azerothcore-wotlk#25188 (creature_text_options engine). - docs/creature_text_option_sets.md: documents the reusable ruleset table (SetID, Cooldown, TriggerChance, PlayerOnly, comment) - docs/creature_text_options.md: documents the per-(CreatureID,GroupID) assignment table and how SendChat() uses it - docs/database-world.md: adds both new tables to the world DB index - docs/creature_text.md: adds a Related Tables section pointing to the new option tables
Copilot
AI
changed the title
[WIP] Fix wiki update for creature_text_options engine
docs: add wiki pages for creature_text_options engine tables
Jul 15, 2026
Kitzunu
marked this pull request as ready for review
July 15, 2026 09:07
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documents the two new DB tables introduced by the merged
creature_text_optionsengine (azerothcore/azerothcore-wotlk#25188), which enables data-driven cooldown, trigger chance, and player-only filtering forSendChat()without per-script boilerplate.New pages
creature_text_option_sets— reusable ruleset definitions; fields:SetID,Cooldown(ms),TriggerChance(0–100%),PlayerOnly,commentcreature_text_options— assigns a ruleset to a(CreatureID, GroupID)pair; documents the three-step checkSendChat()performs (cooldown → chance roll → player-only filter)Updated pages
database-world.md— adds both tables to the World DB index under "C"creature_text.md— adds a "Related Tables" section linking to the new option tables