DB/Exhaustion: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 3: Line 3:
   uint32_t m_ID;
   uint32_t m_ID;
   uint32_t m_xp;
   uint32_t m_xp;
   float m_factor;
   float m_factor;           // Rate EXP is earned in this state
   float m_outdoorHours;
   float m_outdoorHours;
   float m_innHours;
   float m_innHours;
   {{Template:Type|langstringref}} m_name_lang;
   {{Type|langstringref}} m_name_lang;
   float m_threshold;
   float m_threshold;         // Rested has a value of 12. All else 0.
  };
  };
==Structure==
'''Column Field Type Notes'''
1 ID Integer
2 xp Integer
3 factor Float Rate EXP is earned in this state
4 outdoorHours Float
5 innHours Float
6-22 sRefName String + [[Loc]] Name of rested state
23 threshold Float Rested has a value of 12. All else 0.


==6.0.1.18179==
==6.0.1.18179==
Line 26: Line 17:
   float m_outdoorHours;
   float m_outdoorHours;
   float m_innHours;
   float m_innHours;
   {{Template:Type|langstringref}} m_name_lang;
   {{Type|langstringref}} m_name_lang;
   float m_threshold;
   float m_threshold;
   {{Template:Type|langstringref}} m_combatLogText;
   {{Type|langstringref}} m_combatLogText;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[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;
};