From 9fd9a07f1c51200cdaf4fd5e13e7cec24fe3bbcd Mon Sep 17 00:00:00 2001 From: "Julio A. Leyva Osorio" Date: Fri, 16 Jul 2021 16:23:43 -0400 Subject: chore: characters (#584) * Update account_data.md * Update account_instance_times.md * Update account_tutorial.md * Update addons.md * Update arena_team.md * Fix arena_team.md * Update arena_team_member.md * Update auctionhouse.md * Update banned_addons.md * Update battleground_deserters.md * Update bugreport.md * Update calendar_events.md * fix calendar_events.md * fix * fix * fix3 * update calendar_invites.md * update channels.md * fix channels.md * fix channels.md * update channels_bans.md * update channels_bans.md * update petition.md * fix 4 * Update characters.md * Update worlstates.md * Update gm_ticket.md * + Update * + update 2.md * + update 3 * update + characters.md * + update 4.md * + update 5.md * update characters, thanks @r-o-b-o-t-o * fix + * + Update 6 * + Update 7 * + Update 8 * + Update 9 * Fix + @Kitzunu --- docs/character_entry_point.md | 73 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 61 insertions(+), 12 deletions(-) (limited to 'docs/character_entry_point.md') diff --git a/docs/character_entry_point.md b/docs/character_entry_point.md index 40b4a18..9189be9 100644 --- a/docs/character_entry_point.md +++ b/docs/character_entry_point.md @@ -1,12 +1,61 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [character_entry_point](character_entry_point) - -Column | Type | Description ---- | --- | --- -Guid | INT UNSIGNED | -JoinX | FLOAT | -JoinY | FLOAT | -JoinZ | FLOAT | -JoinO | FLOAT | -JoinMapId | INT UNSIGNED | -TaxiPath | text | -MountSpell | INT UNSIGNED | +# character\_entry\_point + +[<-Back-to:Characters](database-characters.md) + +**The \`character\_entry\_point\` table** + +**Structure** + +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +| --------------- | ----- | ---------- | --- | ---- | ------- | ----- | ------------------------ | +| [guid][1] | INT | UNSIGNED | PRI | NO | 0 | | Global Unique Identifier | +| [joinX][2] | FLOAT | SIGNED | | NO | 0 | | | +| [joinY][3] | FLOAT | SIGNED | | NO | 0 | | | +| [joinZ][4] | FLOAT | SIGNED | | NO | 0 | | | +| [joinO][5] | FLOAT | SIGNED | | NO | 0 | | | +| [joinMapId][6] | INT | UNSIGNED | | YES | 0 | | Map Identifier | +| [taxiPath][7] | TEXT | SIGNED | | NO | 0 | | | +| [mountSpell][8] | INT | UNSIGNED | | NO | 0 | | | + +[1]: #guid +[2]: #joinx +[3]: #joiny +[4]: #joinz +[5]: #joino +[6]: #joinmapid +[7]: #taxipath +[8]: #mountspell + +**Description of the fields** + +### guid + +Global Unique Identifier. + +### joinX + +`field-no-description|2` + +### joinY + +`field-no-description|3` + +### joinZ + +`field-no-description|4` + +### joinO + +`field-no-description|5` + +### joinMapId + +Map Identifier. + +### taxiPath + +`field-no-description|7` + +### mountSpell + +`field-no-description|8` \ No newline at end of file -- cgit