How to make novice can learn some skill of other class ?

Zez

New member
Messages
11
Points
0
Github
-
Emulator
How to make novice can learn some skill of other class ?

Ex. Novice can earn double attack from thief skill set.

Guide please, which files I will edit ?

Cloud you please make an example a little bit ?

Thank you very much.

 
trunk/db/pre-re/skill_tree.conf

Novice: {
    skills: {
        NV_BASIC: 9
        NV_FIRSTAID: 1
        NV_TRICKDEAD: 1
        WE_BABY: 1
        WE_CALLPARENT: 1
        WE_CALLBABY: 1
        ALL_INCCARRY: 1
    }
}

Just add whatever skill you want inside.
 

For you example:

Novice: {
    skills: {
        NV_BASIC: 9
        NV_FIRSTAID: 1
        NV_TRICKDEAD: 1
        WE_BABY: 1
        WE_CALLPARENT: 1
        WE_CALLBABY: 1
        ALL_INCCARRY: 1
// CUSTOM SKILLS FROM THIEF
        TF_DOUBLE: 10
        TF_MISS: 10
        TF_STEAL: 10
        TF_HIDING: {
            MaxLevel: 10
            TF_STEAL: 5
        }
        TF_POISON: 10
        TF_DETOXIFY: {
            MaxLevel: 1
            TF_POISON: 3
        }
        TF_SPRINKLESAND: 1
        TF_BACKSLIDING: 1
        TF_PICKSTONE: 1
        TF_THROWSTONE: 1
    }
}

 
  • Like
Reactions: Zez
Thanks for your reply.

I try hard a lot, then I found something is ........ I edited wrong folder =_=.

Can I ask you more one question ?

How to make my own tab ? (Please see attach files)
Example: 

Tab1: Novice
Tab2: Swordman
Tab3: Specail skill
Tab4: Other.

Screenshot 2021-06-14 091428.png

Screenshot 2021-06-14 091615.png

 
Last edited by a moderator:
Back
Top