diff options
Diffstat (limited to 'docs/game_event_creature_quest.md')
| -rw-r--r-- | docs/game_event_creature_quest.md | 83 |
1 files changed, 77 insertions, 6 deletions
diff --git a/docs/game_event_creature_quest.md b/docs/game_event_creature_quest.md index 294d265..2124dec 100644 --- a/docs/game_event_creature_quest.md +++ b/docs/game_event_creature_quest.md @@ -1,7 +1,78 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [game_event_creature_quest](game_event_creature_quest) +# game\_event\_creature\_quest -Column | Type | Description ---- | --- | --- -EventEntry | tinyint(3) unsigned | -Id | mediumint(8) unsigned | -Quest | mediumint(8) unsigned | +`Back-to:World` + +**The \`game\_event\_creature\_quest\` table** + +This table holds information on quests that should only be available when an event is currently taking place. + +**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_creature_quest-eventEntry">eventEntry</a></p></td> +<td><p>tinyint(3)</p></td> +<td><p>unsigned</p></td> +<td><p> </p></td> +<td><p>NO</p></td> +<td><p> </p></td> +<td><p> </p></td> +<td><p>Entry of the game event.</p></td> +</tr> +<tr class="odd"> +<td><p><a href="#game_event_creature_quest-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="even"> +<td><p><a href="#game_event_creature_quest-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> </p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### eventEntry + +The event ID. See game\_event.eventEntry + +### id + +The NPC ID. See creature\_template.entry + +### quest + +The quest ID. See quest\_template.entry |
