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/game_event_prerequisite.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/game_event_prerequisite.md')
| -rw-r--r-- | docs/game_event_prerequisite.md | 68 |
1 files changed, 63 insertions, 5 deletions
diff --git a/docs/game_event_prerequisite.md b/docs/game_event_prerequisite.md index 8c60c3e..291fc1c 100644 --- a/docs/game_event_prerequisite.md +++ b/docs/game_event_prerequisite.md @@ -1,6 +1,64 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [game_event_prerequisite](game_event_prerequisite) +# game\_event\_prerequisite -Column | Type | Description ---- | --- | --- -EventEntry | tinyint(3) unsigned | -Prerequisite_event | mediumint(8) unsigned | +`Back-to:World` + +**The \`game\_event\_prerequisite\` table** + +This table contains events that must have been completed to start the given event. You can have more than one event that must be completed before the next will start. + +**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="#game_event_prerequisite-eventEntry">eventEntry</a></p></td> +<td><p>tinyint(3)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p> </p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="odd"> +<td><p><a href="#game_event_prerequisite-prerequisite_event">prerequisite_event</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> </p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### eventEntry + +This is the event that will start when all prerequisite events have been completed. + +### prerequisite\_event + +The is the event that must be completed before the next [event](#game_event_prerequisite-eventEntry) will start. |
