Changing a skill tree

Merekin

New member
Messages
17
Points
0
Github
r-lourical
I'm trying to change the skill tree of a class, but after i modified the skilldb and skill_treedb.conf the skills are appearing in the etc tab of the Skills window.

I tried changing the skilltreeview.lub archive, but nothing happened. What file i need to modify to make the new skills appears in the right place?

 
You have it right idk whats wrong but heres all my Swordy stuff

jobtreeview.lub from GRF

    [JOBID.JT_SWORDMAN] = {
        [1] = SKID.SM_SWORD,        
        [3] = SKID.SM_BASH,
        [4] = SKID.SM_PROVOKE,        
        [6] = SKID.SM_AUTOBERSERK,
        [8] = SKID.SM_TWOHAND,
        [10] = SKID.SM_MAGNUM,
        [11] = SKID.SM_ENDURE,
        [15] = SKID.KN_SPEARMASTERY,
        [17] = SKID.KN_CHARGEATK
    },    


Ive added spearmastery and made chargeatk into a skill + removed a few things

Then this is my Skill_Tree.Conf from my prere DB

Swordsman: {
    inherit: ( "Novice" );

    skills: {
        SM_SWORD: 30
        SM_TWOHAND: 30
        SM_BASH: 30
        SM_PROVOKE: 30
        SM_MAGNUM: {
            MaxLevel: 30
            SM_BASH: 5
        }
        SM_ENDURE: {
            MaxLevel: 30
            SM_PROVOKE: 5
        }
        KN_SPEARMASTERY: 30
        SM_AUTOBERSERK: 1
        KN_CHARGEATK: 30
    }
}




If you wanna remove the requirements you need to go into skillinfo in the same folder as jobtreeview.lub

If its still not working, make sure your grf order is right 

 
Also a note: If your skill id is out of range, the client would still put them on etc tab.

(client have hardcoded the skill id range for 1st class, 2nd class and 3rd class)

 
Back
Top