Forum > Serverside Modding

Talents

(1/5) > >>

glararan:
Hi...how i can delete RequiredTalents point?Or change number of needed?Let's see here...http://www.wowhead.com/talent#00b

I use Cataclysm Talent calc only..for example..

So what i want?When i have Nature's Majesty and under spell is Balance of Power...Balance of Power(BoP) need 5 Talent points in Balance...how i can change number 5 to 2 so BoP need only 2 talents in Balance?Where can be it?

schlumpf:
As far as I know its fixed to 5*tier. Therefore, you mst likely can't change it. You may want to place the second spell on the same tier and make the first one a prereq. for the second one.

http://madx.dk/wowdev/wiki/index.php?title=Talent.dbc

glararan:
http://madx.dk/wowdev/wiki/index.php?title=Talent.dbc is now Supported for Cataclysm not for WotLK

I have structure from Core:

--- Code: ---struct TalentEntry
{
    uint32    TalentID;                                     // 0
    uint32    TalentTab;                                    // 1 index in TalentTab.dbc (TalentTabEntry)
    uint32    Row;                                          // 2
    uint32    Col;                                          // 3
    uint32    RankID[MAX_TALENT_RANK];                      // 4-8
                                                            // 9-12 not used, always 0, maybe not used high ranks
    uint32    DependsOn;                                    // 13 index in Talent.dbc (TalentEntry)
                                                            // 14-15 not used
    uint32    DependsOnRank;                                // 16
                                                            // 17-18 not used
    //uint32  needAddInSpellBook;                           // 19  also need disable higest ranks on reset talent tree
    //uint32  unk2;                                         // 20, all 0
    //uint64  allowForPet;                                  // 21 its a 64 bit mask for pet 1<<m_categoryEnumID in CreatureFamily.dbc
};

struct TalentTabEntry
{
    uint32  TalentTabID;                                    // 0
    //char* name[16];                                       // 1-16, unused
    //uint32  nameFlags;                                    // 17, unused
    //unit32  spellicon;                                    // 18
                                                            // 19 not used
    uint32  ClassMask;                                      // 20
    uint32  petTalentMask;                                  // 21
    uint32  tabpage;                                        // 22
    //char* internalname;                                   // 23
};
--- End code ---

Must be some path how it change hmm?

schlumpf:
Actually, the structs are identical while the one I added to the wiki is more accurate and even using Blizzard's variable names.
This file did not change with Cataclysm. And also, the wiki is not updated for Cataclysm and still on WotLK state mostly.

So, just do as I said and set the tier to the same for both and add hte first one as prereq for the second one.

glararan:
But on Row 1 can be only 4 columm :/ and when i give it on row 2 it's need 5 talent points...

Navigation

[0] Message Index

[#] Next page

Go to full version