From c681fd4d66521fe6bee35bb2fbd9b5855fca3beb Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Thu, 7 Jan 2021 10:30:03 -0300 Subject: docs: Converting from HTML to Markdown part #4 (#333) --- docs/quest_objectives.md | 293 ++++++++--------------------------------------- 1 file changed, 45 insertions(+), 248 deletions(-) (limited to 'docs/quest_objectives.md') diff --git a/docs/quest_objectives.md b/docs/quest_objectives.md index 9265fa8..bd11dbc 100644 --- a/docs/quest_objectives.md +++ b/docs/quest_objectives.md @@ -8,141 +8,31 @@ This table provides answer for a very important question. What do I need to do i ## Structure - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field

Type

Attributes

Null

Key

Default

Comment

ID

mediumint(8)

unsigned

NOPRI0


-

QuestID

mediumint(8)unsigned

NO


-

0


-

Type

tinyint(3)

unsignedNO


-

0


-

StorageIndex

tinyint(3)signedNO


-

0


-

ObjectID

int(10)

signedNO
-
0


-

Amount

int(10)

signedNO
-
0
-
Flagsint(10)unsignedNO
-
0
-
Flags2int(10)unsignedNO
-
0
-
ProgressBarWeightfloat
-
NO
-
0
-
Descriptiontext
-
YES
-
NULL
-
VerifiedBuildsmallint(5)signedNO
-
0
-
+| Field | Type | Attributes | Null | Key | Default | Comment | +|------------------------|--------------|------------|------|-----|---------|---------| +| [ID][1] | mediumint(8) | unsigned | NO | PRI | 0 | | +| [QuestID][2] | mediumint(8) | unsigned | NO | | 0 | | +| [Type][3] | tinyint(3) | unsigned | NO | | 0 | | +| [StorageIndex][4] | tinyint(3) | signed | NO | | 0 | | +| [ObjectID][5] | int(10) | signed | NO | | 0 | | +| [Amount][6] | int(10) | signed | NO | | 0 | | +| [Flags][7] | int(10) | unsigned | NO | | 0 | | +| [Flags2][8] | int(10) | unsigned | NO | | 0 | | +| [ProgressBarWeight][9] | float | | NO | | 0 | | +| [Description][10] | text | | YES | | NULL | | +| [VerifiedBuild][11] | smallint(5) | signed | NO | | 0 | | + +[1]: #id +[2]: #questid +[3]: #type +[4]: #storageindex +[5]: #objectid +[6]: #amount +[7]: #flags +[8]: #flags2 +[9]: #progressbarweight +[10]: #description +[11]: #verifiedbuild ## Description of the fields @@ -156,117 +46,26 @@ The Quest Id from quest\_template.id ### Type - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TypeIDObjectID
QUEST_OBJECTIVE_MONSTER0creature_template.entry
QUEST_OBJECTIVE_ITEM1itemID from Item.db2
QUEST_OBJECTIVE_GAMEOBJECT2gameobject_template.entry
QUEST_OBJECTIVE_TALKTO3creature_template.entry
QUEST_OBJECTIVE_CURRENCY4
-
QUEST_OBJECTIVE_LEARNSPELL5SpellId Spell.db2
QUEST_OBJECTIVE_MIN_REPUTATION6Faction
QUEST_OBJECTIVE_MAX_REPUTATION7Faction
QUEST_OBJECTIVE_MONEY8Money
QUEST_OBJECTIVE_PLAYERKILLS9
-
QUEST_OBJECTIVE_AREATRIGGER10
-
QUEST_OBJECTIVE_WINPETBATTLEAGAINSTNPC11
-
QUEST_OBJECTIVE_DEFEATBATTLEPET12
-
QUEST_OBJECTIVE_WINPVPPETBATTLES13
-
QUEST_OBJECTIVE_CRITERIA_TREE14
-
QUEST_OBJECTIVE_PROGRESS_BAR15
-
QUEST_OBJECTIVE_HAVE_CURRENCY16
-
QUEST_OBJECTIVE_OBTAIN_CURRENCY17
-
+| Type | ID | ObjectID | +|----------------------------------------|----|---------------------------| +| QUEST_OBJECTIVE_MONSTER | 0 | creature_template.entry | +| QUEST_OBJECTIVE_ITEM | 1 | itemID from Item.db2 | +| QUEST_OBJECTIVE_GAMEOBJECT | 2 | gameobject_template.entry | +| QUEST_OBJECTIVE_TALKTO | 3 | creature_template.entry | +| QUEST_OBJECTIVE_CURRENCY | 4 | | +| QUEST_OBJECTIVE_LEARNSPELL | 5 | SpellId Spell.db2 | +| QUEST_OBJECTIVE_MIN_REPUTATION | 6 | Faction | +| QUEST_OBJECTIVE_MAX_REPUTATION | 7 | Faction | +| QUEST_OBJECTIVE_MONEY | 8 | Money | +| QUEST_OBJECTIVE_PLAYERKILLS | 9 | | +| QUEST_OBJECTIVE_AREATRIGGER | 10 | | +| QUEST_OBJECTIVE_WINPETBATTLEAGAINSTNPC | 11 | | +| QUEST_OBJECTIVE_DEFEATBATTLEPET | 12 | | +| QUEST_OBJECTIVE_WINPVPPETBATTLES | 13 | | +| QUEST_OBJECTIVE_CRITERIA_TREE | 14 | | +| QUEST_OBJECTIVE_PROGRESS_BAR | 15 | | +| QUEST_OBJECTIVE_HAVE_CURRENCY | 16 | | +| QUEST_OBJECTIVE_OBTAIN_CURRENCY | 17 | | ### StorageIndex @@ -302,5 +101,3 @@ Like all flag based fields, **QuestObjectiveFlags** can be added for the differe ### Description ### VerifiedBuild - - -- cgit