DB/Phase: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:Sandbox/VersionRange|min_expansionlevel=4}}
== Structure ==
== Structure ==


Line 4: Line 6:
  1 ID Integer
  1 ID Integer
  2 InternalName String internal name, not displayed or used in client
  2 InternalName String internal name, not displayed or used in client
  3 UnkFlags Integer
  3 phaseShift Integer
cata childMap char[0x14]


UnkFlags is currently only tested for & 8, semantics unknown. Note that all rows have either 0 or 4 as flags.
UnkFlags is currently only tested for & 8, semantics unknown. Note that all rows have either 0 or 4 as flags.
New in Cataclysm.
New in Cataclysm.


==6.0.1.18179==
struct PhaseRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_name;
  uint32_t m_flags;
};
[[Category:DBC]]
[[Category:DBC]]
 
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC]]

Latest revision as of 03:00, 20 July 2016

≥ Cata

Structure

Column	Field 		Type 		Notes 
1 	ID 		Integer 	
2 	InternalName 	String 	internal name, not displayed or used in client
3 	phaseShift 	Integer 	
cata	childMap	char[0x14] 

UnkFlags is currently only tested for & 8, semantics unknown. Note that all rows have either 0 or 4 as flags. New in Cataclysm.

6.0.1.18179

struct PhaseRec {
  uint32_t m_ID;
  stringref m_name;
  uint32_t m_flags;
};