diff options
author | megamage <none@none> | 2008-11-28 11:38:28 -0600 |
---|---|---|
committer | megamage <none@none> | 2008-11-28 11:38:28 -0600 |
commit | e26beb36c2073bb35151aa0cfee7e95f1b5a3901 (patch) | |
tree | 0adc111c86d8a75c406889c231a3b6922ff9933c /src/shared/Database/DBCStructure.h | |
parent | 1d6e33add4f41ba07d5bd9115b1fe8c52ebb6d21 (diff) |
*Update to Mangos 6856. Source: Mangos.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStructure.h')
-rw-r--r-- | src/shared/Database/DBCStructure.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/shared/Database/DBCStructure.h b/src/shared/Database/DBCStructure.h index ce72661066b..dde32406b94 100644 --- a/src/shared/Database/DBCStructure.h +++ b/src/shared/Database/DBCStructure.h @@ -86,6 +86,21 @@ struct BattlemasterListEntry // 32 unused }; +#define MAX_OUTFIT_ITEMS 12 +// #define MAX_OUTFIT_ITEMS 24 // 12->24 in 3.0.x + +struct CharStartOutfitEntry +{ + //uint32 Id; // 0 + uint32 RaceClassGender; // 1 (UNIT_FIELD_BYTES_0 & 0x00FFFFFF) comparable (0 byte = race, 1 byte = class, 2 byte = gender) + int32 ItemId[MAX_OUTFIT_ITEMS]; // 2-13 + //int32 ItemDisplayId[MAX_OUTFIT_ITEMS]; // 14-25 not required at server side + //int32 ItemInventorySlot[MAX_OUTFIT_ITEMS]; // 26-37 not required at server side + //uint32 Unknown1; // 38, unique values (index-like with gaps ordered in other way as ids) + //uint32 Unknown2; // 39 + //uint32 Unknown3; // 40 +}; + struct CharTitlesEntry { uint32 ID; // 0, title ids, for example in Quest::GetCharTitleId() |