blob: 05a5500bb805a7049f30cac0108abb061affc2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# 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`
|