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_quest_condition.md | 100 ++++++++++++++++++++++++++++++++++--- 1 file changed, 92 insertions(+), 8 deletions(-) (limited to 'docs/game_event_quest_condition.md') diff --git a/docs/game_event_quest_condition.md b/docs/game_event_quest_condition.md index a688e85..b5ca90c 100644 --- a/docs/game_event_quest_condition.md +++ b/docs/game_event_quest_condition.md @@ -1,8 +1,92 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [game_event_quest_condition](game_event_quest_condition) - -Column | Type | Description ---- | --- | --- -EventEntry | tinyint(3) unsigned | -Quest | mediumint(8) unsigned | -Condition_id | mediumint(8) unsigned | -Num | float | +# game\_event\_quest\_condition + +`Back-to:World` + +**The \`game\_event\_quest\_condition\` table** + +This table contains the mapping of a quest in a world event to the condition that it will fulfill. It also contains how much a given quest will add to a condition once that quest is completed by a player. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

eventEntry

tinyint(3)

unsigned

 

NO

 

 

 

quest

mediumint(8)

unsigned

PRI

NO

0

 

 

condition_id

mediumint(8)

unsigned

 

NO

0

 

 

num

float

signed

 

YES

0

 

 

+ +**Description of the fields** + +### eventEntry + +The event that is associated with this quest and condition. + +### quest + +The quest that will trigger this condition. + +### condition\_id + +The condition that will be triggered on quest complete. + +### num + +The number of "units" (for lack of a better word) that will be added to the condition to fulfill the required number needed for the condition. -- cgit