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/areatrigger_involvedrelation.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/areatrigger_involvedrelation.md')
| -rw-r--r-- | docs/areatrigger_involvedrelation.md | 70 |
1 files changed, 65 insertions, 5 deletions
diff --git a/docs/areatrigger_involvedrelation.md b/docs/areatrigger_involvedrelation.md index 37809a6..90c8fe1 100644 --- a/docs/areatrigger_involvedrelation.md +++ b/docs/areatrigger_involvedrelation.md @@ -1,6 +1,66 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [areatrigger_involvedrelation](areatrigger_involvedrelation) +# areatrigger\_involvedrelation -Column | Type | Description ---- | --- | --- -Id | mediumint(8) unsigned | -Quest | mediumint(8) unsigned | +`Back-to:World` + +**The \`areatrigger\_involvedrelation\` table** + +Enable a trigger to finish one condition of a quest (explore) + +If there is a record in the table for a quest, then the quest will not be completed until the player activates this areatriger. The quest is not necessarily finished after that, but that one condition of the quest is satisfied. If the only condition of the quest is to explore an area, then the quest will be complete. + +**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>Comments</strong></p></td> +</tr> +<tr class="even"> +<td><p><a href="#areatrigger_involvedrelation-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="#areatrigger_involvedrelation-quest">quest</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>Quest Identifier</p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### id + +This is the trigger ID from [AreaTrigger.dbc](http://collab.kpsn.org/display/tc/AreaTrigger) + +### quest + +This is the quest id that the trigger is tied to. |
