DB/ObjectEffect: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (New page: ==9183== ID, int Type, string, "gear shift", "engine", "land", ... Group, iRefId: ObjectEffectGroup.dbc Unknown, flags, (001,010,011,100): Only 100 for vr_elevator_lift Unknown, bool...)
 
No edit summary
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Template:Sandbox/VersionRange|min_expansionlevel=3}}
==9183==
==9183==
  ID, int
  1 ID, int
  Type, string, "gear shift", "engine", "land",  ...
  2 name, string, "gear shift", "engine", "land",  ...
  Group, iRefId: ObjectEffectGroup.dbc
  3 objectEffectGroupID, iRefId: ObjectEffectGroup.dbc
  Unknown, flags, (001,010,011,100): Only 100 for vr_elevator_lift
  4 triggerType, flags, (001,010,011,100): Only 100 for vr_elevator_lift
  Unknown, bool, true on vr_elevator_lift_change_states
  5 eventType, bool, true on vr_elevator_lift_change_states
  SoundDBC, int, 1 for [[SoundEntries.dbc]], 2 for [[SoundEntriesAdvanced.dbc]].
  6 effectRecType, int, 1 for [[SoundEntries.dbc]], 2 for [[SoundEntriesAdvanced.dbc]].
  Sound, iRefId: see above
  7 effectRecID, iRefId: see above
  Unknown, int {all only set for the vr_elevator_lift
  8 attachment, int {all only set for the vr_elevator_lift
  Unknown, float
  9 offsetX, float
  Unknown, null, always null, most likely a float.
  10 offsetY, float
  Unknown, float }
  11 offsetZ, float }
  Modifiers, iRefId: [[ObjectEffectModifier.dbc]]
  12 objectEffectModifierID, iRefId: [[ObjectEffectModifier.dbc]]


==6.0.1.18179==
struct ObjectEffectRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_name;
  uint32_t m_objectEffectGroupID;
  uint32_t m_triggerType;
  uint32_t m_eventType;
  uint32_t m_effectRecType;
  uint32_t m_effectRecID;
  uint32_t m_attachment;
  float m_offset[3];
  uint32_t m_objectEffectModifierID;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 02:47, 20 July 2016

≥ Wrath

9183

1 ID, int
2 name, string, "gear shift", "engine", "land",  ...
3 objectEffectGroupID, iRefId: ObjectEffectGroup.dbc
4 triggerType, flags, (001,010,011,100): Only 100 for vr_elevator_lift
5 eventType, bool, true on vr_elevator_lift_change_states
6 effectRecType, int, 1 for SoundEntries.dbc, 2 for SoundEntriesAdvanced.dbc.
7 effectRecID, iRefId: see above
8 attachment, int {all only set for the vr_elevator_lift
9 offsetX, float 	
10 offsetY, float
11 offsetZ, float }
12 objectEffectModifierID, iRefId: ObjectEffectModifier.dbc

6.0.1.18179

struct ObjectEffectRec {
  uint32_t m_ID;
  stringref m_name;
  uint32_t m_objectEffectGroupID;
  uint32_t m_triggerType;
  uint32_t m_eventType;
  uint32_t m_effectRecType;
  uint32_t m_effectRecID;
  uint32_t m_attachment;
  float m_offset[3];
  uint32_t m_objectEffectModifierID;
};