Skill Tree Issue

WhiteEagle

New member
Messages
52
Points
0
Emulator
Hope it is the right section,
I've the follwing problem, that after @reset player are complete skillfree.

Can anyone help me to fix that?

Skillfree2.PNG

Skillfree.PNG

 
The problem is, that normally you can only skill your 2nd job skills, when you have already skill your 1st job skills.
But in the screenshot you can see, I dont need to use my 40/50 skillpoints from my 1st job.
So I can spend more skillpoints for my 2nd job after my reset.

 
The problem is, that normally you can only skill your 2nd job skills, when you have already skill your 1st job skills.
But in the screenshot you can see, I dont need to use my 40/50 skillpoints from my 1st job.
So I can spend more skillpoints for my 2nd job after my reset.
it caused by a setting in conf/map/battle/player.conf

// When set to true, forces skill points gained from 1st class to be put into 1st class
// skills, and forces novice skill points to be put into the basic skill. (Note 1)
player_skillup_limit: true




so its either you have set that to false ... OR ...

// src/map/pc.c - LINE 1928
static int pc_calc_skilltree_normalize_job(struct map_session_data *sd)
{
int skill_point, novice_skills;
uint16 job;

nullpo_ret(sd);
job = sd->job;
if (!battle_config.skillup_limit || pc_has_permission(sd, PC_PERM_ALL_SKILL))
return job;


you are using GM account that has permission to bypass this

 
Last edited by a moderator:
Thanks for your replys.

probably cause you didnt level enough when you were an acolyte
Yea, thats "fixed" the problem.
And AnnieRuru, that's all was disabled and tested with an normal acc. .
But thanks either. ^^
 

 
Back
Top