diff options
Diffstat (limited to 'docs/pool_quest.md')
| -rw-r--r-- | docs/pool_quest.md | 83 |
1 files changed, 77 insertions, 6 deletions
diff --git a/docs/pool_quest.md b/docs/pool_quest.md index d82f531..eac93df 100644 --- a/docs/pool_quest.md +++ b/docs/pool_quest.md @@ -1,7 +1,78 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [pool_quest](pool_quest) +# pool\_quest -Column | Type | Description ---- | --- | --- -Entry | int(10) unsigned | -Pool_entry | mediumint(8) unsigned | -Description | varchar(255) | +`Back-to:World` + +**The \`pool\_quest\` table** + +This table contains a list of quests that are tied to a specific pool. + +**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="#pool_quest-entry">entry</a></p></td> +<td><p>int(10)</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="#pool_quest-pool_entry">pool_entry</a></p></td> +<td><p>mediumint(8)</p></td> +<td><p>unsigned</p></td> +<td><p> </p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="even"> +<td><p><a href="#pool_quest-description">description</a></p></td> +<td><p>varchar(255)</p></td> +<td><p>signed</p></td> +<td><p> </p></td> +<td><p>YES</p></td> +<td><p>NULL</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### entry + +Quest [id](quest_template_2130261.html#quest_template-id). + +### pool\_entry + +The [pool](pool_template_2130267.html#pool_template-entry) that this quest is in. Refers to [pool\_template entry](pool_template_2130267.html#pool_template-entry). + +### description + +`field-no-description|3` |
