DB/SkillLine: Difference between revisions

From wowdev
Jump to navigation Jump to search
 
(19 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==Header Info ==
==0.5.3.3368==
  Records...................135
  struct SkillLineRec {
Fields.....................22
  uint32_t m_ID;
Record Size................88
  uint32_t m_raceMask;
  String Block Size........4607
  uint32_t m_classMask;
  uint32_t m_excludeRace;
  uint32_t m_excludeClass;
  uint32_t m_categoryID;
  uint32_t m_skillType;  // 0: Class, 1: Specialization, 2: Racial, 3: Primary Profession (Talent Tree), 4: Secondary Profession
  uint32_t m_minCharLevel;
  uint32_t m_maxRank;
  uint32_t m_abandonable;
  {{Template:Type|langstringref}} m_displayName_lang;
  };


==1.12.1.5875==
struct SkillLineRec {
  uint32_t m_ID;
  uint32_t m_categoryID;
  uint32_t m_skillCostsID;
  {{Template:Type|langstringref}} m_displayName_lang;
  {{Template:Type|langstringref}} m_description_lang;
  uint32_t m_spellIconID;
};
==Structure==
==Structure==
  '''Column Field Type'''  
  '''Column Field Type'''  
Line 16: Line 34:
  8 canLink Integer prof. with recipes
  8 canLink Integer prof. with recipes


  struct SkillLineEntry
  struct SkillLineEntry // sizeof(0x20)
  {
  {
    uint32    id;                                           // 0       m_ID
    m_ID; // +0x0, size 0x4, type 0
    int32     categoryId;                                  // 1        m_categoryID
     m_categoryID; // +0x4, size 0x4, type 0
    //uint32    skillCostID;                               // 2        m_skillCostsID
     m_skillCostsID; // +0x8, size 0x4, type 0
    char*     name[16];                                     // 3-18     m_displayName_lang
     {{Template:Type|langstringref}} m_displayName_lang; // +0xC, size 0x4, type 2
                                                            // 19 string flags
     {{Template:Type|langstringref}} m_description_lang; // +0x10, size 0x4, type 2
    //char*     description[16];                           // 20-35    m_description_lang
    m_spellIconID; // +0x14, size 0x4, type 0
                                                            // 36 string flags
     {{Template:Type|langstringref}} m_alternateVerb_lang; // +0x18, size 0x4, type 2
    uint32    spellIcon;                                   // 37      m_spellIconID
    m_canLink; // +0x1C, size 0x4, type 0
    //char*     alternateVerb[16];                         // 38-53    m_alternateVerb_lang
                                                            // 54 string flags
    uint32    canLink;                                     // 55      m_canLink (prof. with recipes
  };
  };


http://dev.trinitycore.org/trinitycore2/src/561ac59c59ac/src/game/DBCStructure.h
==6.0.1.18179==
struct SkillLineRec {
  uint32_t m_ID;
  uint32_t m_categoryID;
  {{Template:Type|langstringref}} m_displayName_lang;
  {{Template:Type|langstringref}} m_description_lang;
  uint32_t m_spellIconID;
  {{Template:Type|langstringref}} m_alternateVerb_lang;
  uint32_t m_canLink;
  uint32_t m_parentSkillLineID;
  uint32_t m_flags;
};
==Categories==
Note the alpha categories are not defined and therefore maybe incorrect. The others are records from in [[DB/SkillLineCategory]]
enum SkillCategory
{
    #if {{Template:Sandbox/VersionRange|max_expansionlevel=0|max_build=0.5.5.3494}}
    SKILL_CATEGORY_PASSIVE            = 1,    // language and riding
    SKILL_CATEGORY_SECONDARY_SKILL    = 2,    // skills that increase on use i.e. axes, unarmed
    SKILL_CATEGORY_PRIMARY_SKILL      = 3,    // skills that are increased with skill points (skill points were awarded upon levelling along with talent points)
    SKILL_CATEGORY_CLASS              = 4,    // racials, pet talents
    #else
    SKILL_CATEGORY_ATTRIBUTES        = 5,
    SKILL_CATEGORY_WEAPON            = 6,
    SKILL_CATEGORY_CLASS              = 7,
    SKILL_CATEGORY_ARMOR              = 8,
    SKILL_CATEGORY_SECONDARY          = 9,    // secondary professions
    SKILL_CATEGORY_LANGUAGES          = 10,
    SKILL_CATEGORY_PROFESSION        = 11,  // primary professions
    SKILL_CATEGORY_GENERIC            = 12
    #end
};


[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 16:31, 19 June 2018

0.5.3.3368

struct SkillLineRec {
  uint32_t m_ID;
  uint32_t m_raceMask;
  uint32_t m_classMask;
  uint32_t m_excludeRace;
  uint32_t m_excludeClass;
  uint32_t m_categoryID;
  uint32_t m_skillType;   // 0: Class, 1: Specialization, 2: Racial, 3: Primary Profession (Talent Tree), 4: Secondary Profession
  uint32_t m_minCharLevel;
  uint32_t m_maxRank;
  uint32_t m_abandonable;
  langstringref m_displayName_lang;
};

1.12.1.5875

struct SkillLineRec {
  uint32_t m_ID;
  uint32_t m_categoryID;
  uint32_t m_skillCostsID;
  langstringref m_displayName_lang;
  langstringref m_description_lang;
  uint32_t m_spellIconID;
};

Structure

Column	Field 				Type 
1 	ID 				Integer 	
2 	iRefID_SkillLineCategory 	Integer 	
3 	skillCostID 			Integer 	iRefID somewhere. spellcost? too lazy right now. 
4	sRefName 			String + Loc	
5 	description 			String + Loc 
6 	iRefID_SpellIcon	 	Integer 
7 	verb 				String + Loc 	
8 	canLink 			Integer 		prof. with recipes
struct SkillLineEntry // sizeof(0x20)
{
   m_ID; // +0x0, size 0x4, type 0
   m_categoryID; // +0x4, size 0x4, type 0
   m_skillCostsID; // +0x8, size 0x4, type 0
   langstringref m_displayName_lang; // +0xC, size 0x4, type 2
   langstringref m_description_lang; // +0x10, size 0x4, type 2
   m_spellIconID; // +0x14, size 0x4, type 0
   langstringref m_alternateVerb_lang; // +0x18, size 0x4, type 2
   m_canLink; // +0x1C, size 0x4, type 0
};

6.0.1.18179

struct SkillLineRec {
  uint32_t m_ID;
  uint32_t m_categoryID;
  langstringref m_displayName_lang;
  langstringref m_description_lang;
  uint32_t m_spellIconID;
  langstringref m_alternateVerb_lang;
  uint32_t m_canLink;
  uint32_t m_parentSkillLineID;
  uint32_t m_flags;
};

Categories

Note the alpha categories are not defined and therefore maybe incorrect. The others are records from in DB/SkillLineCategory

enum SkillCategory
{
   #if ≤ PreVanilla (0.5.5.3494) 
    SKILL_CATEGORY_PASSIVE            = 1,    // language and riding
    SKILL_CATEGORY_SECONDARY_SKILL    = 2,    // skills that increase on use i.e. axes, unarmed
    SKILL_CATEGORY_PRIMARY_SKILL      = 3,    // skills that are increased with skill points (skill points were awarded upon levelling along with talent points)
    SKILL_CATEGORY_CLASS              = 4,    // racials, pet talents
   #else
    SKILL_CATEGORY_ATTRIBUTES         = 5,
    SKILL_CATEGORY_WEAPON             = 6,
    SKILL_CATEGORY_CLASS              = 7,
    SKILL_CATEGORY_ARMOR              = 8,
    SKILL_CATEGORY_SECONDARY          = 9,    // secondary professions
    SKILL_CATEGORY_LANGUAGES          = 10,
    SKILL_CATEGORY_PROFESSION         = 11,   // primary professions
    SKILL_CATEGORY_GENERIC            = 12
   #end
};