From a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3 Mon Sep 17 00:00:00 2001 From: FrancescoBorzi Date: Mon, 25 Feb 2019 19:24:20 +0100 Subject: Import DB wiki from TC 335 --- docs/game_event_creature_quest.md | 83 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 77 insertions(+), 6 deletions(-) (limited to 'docs/game_event_creature_quest.md') 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** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

eventEntry

tinyint(3)

unsigned

 

NO

 

 

Entry of the game event.

id

mediumint(8)

unsigned

PRI

NO

0

 

 

quest

mediumint(8)

unsigned

PRI

NO

0

 

 

+ +**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 -- cgit