DB/GMSurveyAnswers: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Added Category WotLK)
(Organized to make a little more specific and cleaner. No notes added as of yet.)
Line 1: Line 1:
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|- style="background:#E0E0E0;"
| 1  || ID || Integer ||
|-
| 2  || SortIndex || Integer ||
|- style="background:#E0E0E0;"
| 3  || GMSurveyQuestionID || Integer ||
|-
| 4 - 19  || AnswerLang || String ||
|- style="background:#E0E0E0;"
| 20  || AnswerLangFlags || Bitmask ||
|-
|}
  struct GMSurveyAnswersEntry // sizeof(0x10)
  struct GMSurveyAnswersEntry // sizeof(0x10)
  {
  {
Line 6: Line 25:
     m_Answer_lang; // +0xC, size 0x4, type 2
     m_Answer_lang; // +0xC, size 0x4, type 2
  };
  };


[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]

Revision as of 16:47, 1 February 2013

Column Field Type Notes
1 ID Integer
2 SortIndex Integer
3 GMSurveyQuestionID Integer
4 - 19 AnswerLang String
20 AnswerLangFlags Bitmask
struct GMSurveyAnswersEntry // sizeof(0x10)
{
   m_ID; // +0x0, size 0x4, type 0
   m_Sort_Index; // +0x4, size 0x4, type 0
   m_GMSurveyQuestionID; // +0x8, size 0x4, type 0
   m_Answer_lang; // +0xC, size 0x4, type 2
};