diff options
Diffstat (limited to 'docs/creature_queststarter.md')
| -rw-r--r-- | docs/creature_queststarter.md | 68 |
1 files changed, 63 insertions, 5 deletions
diff --git a/docs/creature_queststarter.md b/docs/creature_queststarter.md index 8737b65..751386c 100644 --- a/docs/creature_queststarter.md +++ b/docs/creature_queststarter.md @@ -1,6 +1,64 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [creature_queststarter](creature_queststarter) +# creature\_queststarter -Column | Type | Description ---- | --- | --- -Id | mediumint(8) unsigned | -Quest | mediumint(8) unsigned | +`Back-to:World` + +**The \`creature\_queststarter\` table** + +Holds NPC quest giver relations on which NPCs start which quests. + +**Structure** + +<table> +<colgroup> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +</colgroup> +<tbody> +<tr class="odd"> +<td><p><strong>Field</strong></p></td> +<td><p><strong>Type</strong></p></td> +<td><p><strong>Attributes</strong></p></td> +<td><p><strong>Key</strong></p></td> +<td><p><strong>Null</strong></p></td> +<td><p><strong>Default</strong></p></td> +<td><p><strong>Extra</strong></p></td> +<td><p><strong>Comment</strong></p></td> +</tr> +<tr class="even"> +<td><p><a href="#creature_queststarter-id">id</a></p></td> +<td><p>mediumint(8)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p>Identifier</p></td> +</tr> +<tr class="odd"> +<td><p><a href="#creature_queststarter-quest">quest</a></p></td> +<td><p>mediumint(8)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p>Quest Identifier</p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### id + +The ID of the creature. See creature\_template.entry + +### quest + +The quest ID that the creature starts. See quest\_template.id |
