diff options
author | Streusel <m.me1@live.de> | 2013-06-22 21:49:32 -0600 |
---|---|---|
committer | Streusel <m.me1@live.de> | 2013-06-22 21:49:32 -0600 |
commit | a48f523555f02b4245cfc0313cb35f8a332cac50 (patch) | |
tree | 382235e27def7456403fd8e3dfc7f3fc5a3415f9 /db/pre-re | |
parent | b3c99c8c78e664b1350388e15fafb2f6db2dfe3b (diff) | |
download | hercules-a48f523555f02b4245cfc0313cb35f8a332cac50.tar.gz hercules-a48f523555f02b4245cfc0313cb35f8a332cac50.tar.bz2 hercules-a48f523555f02b4245cfc0313cb35f8a332cac50.tar.xz hercules-a48f523555f02b4245cfc0313cb35f8a332cac50.zip |
Update skill_tree.conf
Special thanks to Via and the others in irc for reporting this.
Diffstat (limited to 'db/pre-re')
-rw-r--r-- | db/pre-re/skill_tree.conf | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/db/pre-re/skill_tree.conf b/db/pre-re/skill_tree.conf index 248d9bf1f..659c331de 100644 --- a/db/pre-re/skill_tree.conf +++ b/db/pre-re/skill_tree.conf @@ -11,15 +11,15 @@ // http://hercules.ws/board/topic/1188-skill-tree-db-redesign/ <desc~!> //================ Structure Example ================= /* -Job_Name: { /* Job names as in src/map/pc.c (they are hardcoded at the moment so if you want to add a new job you should add it there) */ - inherit: ( "Other_Job_Name" ); /* Base job from which this job will inherit its skill tree. NV_TRICKDEAD inheritance is skipped for non-novices from the source */ +Job_Name: { // Job names as in src/map/pc.c (they are hardcoded at the moment so if you want to add a new job you should add it there) + inherit: ( "Other_Job_Name" ); // Base job from which this job will inherit its skill tree. NV_TRICKDEAD inheritance is skipped for non-novices from the source - skills: { /* SKILL_NAMEs come from the Name (16th column) value in db/pre-re/skill_db.txt */ - SKILL_NAME1: Max_Level /* Use this for skills that don't have other skill prerequisite; Max_Level is a numeric value that should match your client side files */ - SKILL_NAME2: { /* Use this for skills which have other skills as prerequisites */ - MaxLevel: Max_Level /* Max_Level is a numeric value that should match your client side files */ - SKILL_NAME_PREREQUISITE: Level_Prerequisite /* The prerequisite skill and min level for having this skill available. Should also match your client side files */ - SKILL_NAME_PREREQUISITE2: Level_Prerequisite2 /* You can add as many prerequisite skills as you want. Minimum of 1 if you add a skill this way */ + skills: { // SKILL_NAMEs come from the Name (16th column) value in db/pre-re/skill_db.txt + SKILL_NAME1: Max_Level // Use this for skills that don't have other skill prerequisite; Max_Level is a numeric value that should match your client side files + SKILL_NAME2: { // Use this for skills which have other skills as prerequisites + MaxLevel: Max_Level // Max_Level is a numeric value that should match your client side files + SKILL_NAME_PREREQUISITE: Level_Prerequisite // The prerequisite skill and min level for having this skill available. Should also match your client side files + SKILL_NAME_PREREQUISITE2: Level_Prerequisite2 // You can add as many prerequisite skills as you want. Minimum of 1 if you add a skill this way } } */ |