DB/CharStartOutfit: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
Line 21: Line 21:
|1  || ID  || Integer  ||  
|1  || ID  || Integer  ||  
|- style="background:#F0F8FF;"
|- style="background:#F0F8FF;"
|2.1  || [[ChrRaces.dbc|Race]]  || iRefID  || These fields are 4 bytes TOGETHER.
|2.1  || [[ChrRaces.dbc|Race]]  || iRefID  || (byte)
|- style="background:#F0F8FF;"
|- style="background:#F0F8FF;"
|2.2  || [[ChrClasses.dbc|Class]]  || iRefID  ||
|2.2  || [[ChrClasses.dbc|Class]]  || iRefID  || (byte)
|-  
|-  
|2.3  || Gender  || Integer8 || male, female
|2.3  || Gender  || int8 || male, female
|-
|2.4  || Unknown  || Integer8  || Always 0.
|-  
|-  
|3  || Items[24]  || Integer[]  || These reference item IDs (see wowhead or the itemcache). -1 or 0 if none. Actually ignored by the client.
|3  || Items[24]  || Integer[]  || These reference item IDs (see wowhead or the itemcache). -1 or 0 if none. Actually ignored by the client.

Revision as of 13:10, 4 January 2010

Information about the items the characters get when they enter the world the first time. The server seems to have the same database since there are non-viewable items listed too (bindstones, food).

Header Info

Records...................126
Fields.....................77
Record Size...............296
String Block Size...........1

Note: These fields do not have the standard 4 byte blocks unless you can read blocks in 3.7073170731707! =)

Update to 3.2.0.10192 -- chuanhsing

Structure

Column Field Type Notes
1 ID Integer
2.1 Race iRefID (byte)
2.2 Class iRefID (byte)
2.3 Gender int8 male, female
3 Items[24] Integer[] These reference item IDs (see wowhead or the itemcache). -1 or 0 if none. Actually ignored by the client.
28 DisplayInfo[24] Integer[] Both only set if Item[x] is set too.
53 InventoryType[24] Integer[] Values from -1 to 26.

--schlumpf_ 20:15, 29 September 2008 (CEST)