DB/Exhaustion: Difference between revisions

From wowdev
Jump to navigation Jump to search
(New page: ==Header Info== Records.....................5 Fields.....................15 Record Size................60 String Block Size..........37 ==Structure== '''Column Field Type Notes'...)
 
mNo edit summary
 
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==Header Info==
==1.12.1.5875==
  Records.....................5
  struct ExhaustionRec {
Fields.....................15
  uint32_t m_ID;
Record Size................60
  uint32_t m_xp;
  String Block Size..........37
  float m_factor;            // Rate EXP is earned in this state
  float m_outdoorHours;
  float m_innHours;
  {{Type|langstringref}} m_name_lang;
  float m_threshold;        // Rested has a value of 12. All else 0.  
  };


==Structure==
==6.0.1.18179==
  '''Column Field Type Notes'''
  struct ExhaustionRec {
1 ID Integer
  uint32_t m_ID;
2 Unknown Integer
  uint32_t m_xp;
3 EXP Modifier Float Rate EXP is earned in this state
  float m_factor;
4 Unknown Float
  float m_outdoorHours;
5 Unknown Float
  float m_innHours;
6 sRefName String Name of rested state
  {{Type|langstringref}} m_name_lang;
7-14 Localization String*
  float m_threshold;
  15 Unknown Float Rested has a value of 12. All else 0.
  {{Type|langstringref}} m_combatLogText;
  };


Retrieved from "http://www.sourcepeek.com/wiki/Exhaustion.dbc"
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 16:30, 1 January 2020

1.12.1.5875

struct ExhaustionRec {
  uint32_t m_ID;
  uint32_t m_xp;
  float m_factor;            // Rate EXP is earned in this state 
  float m_outdoorHours;
  float m_innHours;
  langstringref m_name_lang;
  float m_threshold;         // Rested has a value of 12. All else 0. 
};

6.0.1.18179

struct ExhaustionRec {
  uint32_t m_ID;
  uint32_t m_xp;
  float m_factor;
  float m_outdoorHours;
  float m_innHours;
  langstringref m_name_lang;
  float m_threshold;
  langstringref m_combatLogText;
};