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/corpse.md | 137 ++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 115 insertions(+), 22 deletions(-) (limited to 'docs/corpse.md') diff --git a/docs/corpse.md b/docs/corpse.md index 1626b20..45ebe73 100644 --- a/docs/corpse.md +++ b/docs/corpse.md @@ -1,22 +1,115 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [corpse](corpse) - -| Field | Type | Attributes | Key | Null | Default | Extra | Comment | -|-------------|-------------|------------|-----|------|---------|--------|------------------------------------| -| corpseGuid | INT | UNSIGNED | PRI | NO | 0 | Unique | Global Unique Identifier | -| guid | INT | UNSIGNED | | NO | 0 | | Character Global Unique Identifier | -| posX | FLOAT | SIGNED | | NO | 0 | | | -| posY | FLOAT | SIGNED | | NO | 0 | | | -| posZ | FLOAT | SIGNED | | NO | 0 | | | -| orientation | FLOAT | SIGNED | | NO | 0 | | | -| mapId | SMALLINT | UNSIGNED | | NO | 0 | | Map Identifier | -| phaseMask | SMALLINT | UNSIGNED | | NO | 0 | | | -| displayId | INT | UNSIGNED | | NO | 0 | | | -| itemCache | text | SIGNED | | NO | | | | -| bytes1 | INT | UNSIGNED | | NO | 0 | | | -| bytes2 | INT | UNSIGNED | | NO | 0 | | | -| guildId | INT | UNSIGNED | | NO | 0 | | | -| flags | TINYINT | UNSIGNED | | NO | 0 | | | -| dynFlags | TINYINT | UNSIGNED | | NO | 0 | | | -| time | INT | UNSIGNED | | NO | 0 | | | -| corpseType | TINYINT | UNSIGNED | | NO | 0 | | | -| instanceId | INT | UNSIGNED | | NO | 0 | | | +# corpse + +[<-Back-to:Characters](database-characters.md) + +**The \`corpse\` table** + +**Structure** + +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +| ---------------- | -------- | ---------- | --- | ---- | ------- | ------ | ---------------------------------- | +| [guid][1] | INT | UNSIGNED | PRI | NO | 0 | | Character Global Unique Identifier | +| [posX][2] | FLOAT | SIGNED | | NO | 0 | | | +| [posY][3] | FLOAT | SIGNED | | NO | 0 | | | +| [posZ][4] | FLOAT | SIGNED | | NO | 0 | | | +| [orientation][5] | FLOAT | SIGNED | | NO | 0 | | | +| [mapId][6] | SMALLINT | UNSIGNED | | NO | 0 | | Map Identifier | +| [phaseMask][7] | INT | UNSIGNED | | NO | 1 | | | +| [displayId][8] | INT | UNSIGNED | | NO | 0 | | | +| [itemCache][9] | TEXT | SIGNED | | NO | | | | +| [bytes1][10] | INT | UNSIGNED | | NO | 0 | | | +| [bytes2][11] | INT | UNSIGNED | | NO | 0 | | | +| [guildId][12] | INT | UNSIGNED | | NO | 0 | | | +| [flags][13] | TINYINT | UNSIGNED | | NO | 0 | | | +| [dynFlags][14] | TINYINT | UNSIGNED | | NO | 0 | | | +| [time][15] | INT | UNSIGNED | | NO | 0 | | | +| [corpseType][16] | TINYINT | UNSIGNED | | NO | 0 | | | +| [instanceId][17] | INT | UNSIGNED | | NO | 0 | | Instance Identifier | + +[1]: #guid +[2]: #posx +[3]: #posy +[4]: #posz +[5]: #orientation +[6]: #mapid +[7]: #phasemask +[8]: #displayid +[9]: #itemcache +[10]: #bytes1 +[11]: #bytes2 +[12]: #guildid +[13]: #flags +[14]: #dynFlags +[15]: #time +[16]: #corpsetype +[17]: #instanceid + +**Description of the fields** + +### guid + +The character guid. See [characters.guid](characters#guid). + +### posX + +`field-no-description|2` + +### posY + +`field-no-description|3` + +### posZ + +`field-no-description|4` + +### orientation + +`field-no-description|5` + +### mapId + +`field-no-description|6` + +### phaseMask + +`field-no-description|7` + +### displayId + +`field-no-description|8` + +### itemCache + +`field-no-description|9` + +### bytes1 + +`field-no-description|10` + +### bytes2 + +`field-no-description|11` + +### guildId + +`field-no-description|12` + +### flags + +`field-no-description|13` + +### dynFlags + +`field-no-description|14` + +### time + +`field-no-description|15` + +### corpseType + +`field-no-description|16` + +### instanceId + +`field-no-description|17` \ No newline at end of file -- cgit