# quest\_request\_items **Table: quest\_request\_items** ** **This table basically handles 3 quest details: 1. NPC Emote when quest is completed 2. NPC Emote when quest is incomplete 3. Completion text for quests requiring quest items   | Field | Type | Attributes | Key | NULL | Default | Comment | |-------------------------------------------------------------|--------------|-------------------|-----|------|---------|----------------------------------------------------------------------------------------------------------------------| | [ID](quest_request_items) | MEDIUMINT | UNSIGNED | PRI | NO | 0 | Unique ID ([quest\_template.ID](https://trinitycore.atlassian.net/wiki/display/tc/quest_template#quest_template-ID)) | | [EmoteOnComplete](#quest_request_items-EmoteOnComplete) | SMALLINT | UNSIGNED |   | NO | 0 | Quest ender NPC [Emote](https://trinitycore.atlassian.net/wiki/display/tc/Emotes) | | [EmoteOnIncomplete](#quest_request_items-EmoteOnIncomplete) | SMALLINT | UNSIGNED |   | NO | 0 | Quest ender NPC Emote | | [CompletionText](#quest_request_items-CompletionText) | text | utf8\_general\_ci |   | YES | NULL | Quest completion text | | [VerifiedBuild](#quest_request_items-VerifiedBuild) | SMALLINT |   |   | NO | 0 | Game client Build number |   **Description of the fields:** ### **ID** Quest ID for quests showing a completion text upon turning in an item delivery quest. Primary Key for this table. Each quest ID must be unique. ### **EmoteOnComplete** Emote (from [Emotes.dbc](https://trinitycore.atlassian.net/wiki/display/tc/Emotes)) played by the quest ender NPC when all quest objectives are completed. ### **EmoteOnIncomplete** Emote (from [Emotes.dbc](https://trinitycore.atlassian.net/wiki/display/tc/Emotes)) played by the quest ender NPC if any of the quest objectives are incomplete. ### **CompletionText** Quest gossip text shown in the final gossip dialogue window when turning in an item delivery quest. The quest item(s) involved in the quest can either be provided by the quest giver or collected by the player. ### **VerifiedBuild** This field is used by the TrinityCore DB Team to determine whether a template has been verified from WDB files. - If value is 0, it has not been parsed yet. - If value is > 0, it has been parsed with WDB files from that specific [Client Build](https://trinitycore.atlassian.net/wiki/display/tc/realmlist#realmlist-gamebuild). - If value is -1, it is just a place holder until proper data are found on WDBs. - If value is -[Client Build](https://trinitycore.atlassian.net/wiki/display/tc/realmlist#realmlist-gamebuild), it was parsed with WDB files from that specific [client build](https://trinitycore.atlassian.net/wiki/display/tc/realmlist#realmlist-gamebuild) and manually edited later for some specific necessity.