diff options
| author | FrancescoBorzi <borzifrancesco@gmail.com> | 2019-02-25 19:24:20 +0100 |
|---|---|---|
| committer | FrancescoBorzi <borzifrancesco@gmail.com> | 2019-02-25 19:24:20 +0100 |
| commit | a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3 (patch) | |
| tree | 91e0cde00f6f27b730b0df3f4338fcf99fa8447a /docs/gameobject_questender.md | |
| parent | d8d1823802ded97300fa57405d80b16736603489 (diff) | |
| download | wiki-a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3.tar.gz wiki-a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3.tar.bz2 wiki-a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3.zip | |
Import DB wiki from TC 335
Diffstat (limited to 'docs/gameobject_questender.md')
| -rw-r--r-- | docs/gameobject_questender.md | 68 |
1 files changed, 63 insertions, 5 deletions
diff --git a/docs/gameobject_questender.md b/docs/gameobject_questender.md index 19d83c7..30af9e5 100644 --- a/docs/gameobject_questender.md +++ b/docs/gameobject_questender.md @@ -1,6 +1,64 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [gameobject_questender](gameobject_questender) +# gameobject\_questender -Column | Type | Description ---- | --- | --- -Id | mediumint(8) unsigned | -Quest | mediumint(8) unsigned | +`Back-to:World` + +**The \`gameobject\_questender\` table** + +Holds game object quest taker relations. The game objects in this table should all be of type QUESTGIVER (2). + +**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="#gameobject_questender-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> </p></td> +</tr> +<tr class="odd"> +<td><p><a href="#gameobject_questender-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 template ID of the game object. See gameobject\_template.entry + +### quest + +The quest ID that this game object finishes. See quest\_template.id |
