DB/PowerDisplay: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
New in WotLK.


==Header Info ==
{{Template:Sandbox/VersionRange|min_expansionlevel=3}}
Records....................25
Fields......................6
Record Size................16
String Block Size.........487


==4.0.3.13329==
==3.3.5.12340, 4.0.3.13329==


{| style="background:#FCFCFC; color:black"
{| style="background:#FCFCFC; color:black"
Line 18: Line 13:
| 1  || ID || Integer ||
| 1  || ID || Integer ||
|-  
|-  
| 2  || unk1 || Int16 ||
| 2  || actualType || Integer ||
|- style="background:#E0E0E0;"
| 3  || unk2 || Int16 ||
|-  
|-  
| 4 || Name || String ||
| 3 || globalStringBaseTag || String || This is the name but with possibility to be localized in GlobalStrings.lua.
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 3  || unk3 || Int16 ||
| 4  || rgb || char[0x3] ||
|-
| 4  || unk4 || Int16 ||
|}
|}


==6.0.1.18179==
struct PowerDisplayRec {
  uint32_t m_ID;
  uint32_t m_actualType;
  {{Template:Type|stringref}} m_globalStringBaseTag;
  uint8_t m_red;
  uint8_t m_green;
  uint8_t m_blue;
  uint8_t padding_0[1];
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC 4.0.3.13329]]
[[Category:DBC_WotLK]]
[[Category:DBC_Cataclysm]]
[[Category:3.3.5.12340]]
[[Category:4.0.3.13329]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 02:48, 20 July 2016

≥ Wrath

3.3.5.12340, 4.0.3.13329

Column Field Type Notes
1 ID Integer
2 actualType Integer
3 globalStringBaseTag String This is the name but with possibility to be localized in GlobalStrings.lua.
4 rgb char[0x3]

6.0.1.18179

struct PowerDisplayRec {
  uint32_t m_ID;
  uint32_t m_actualType;
  stringref m_globalStringBaseTag;
  uint8_t m_red;
  uint8_t m_green;
  uint8_t m_blue;
  uint8_t padding_0[1];
};