zaruramen Posted October 15, 2015 Posted October 15, 2015 hello I try to set this // Status points bonus for transcendent class transcendent_status_points: 52 to 1 (0 is invalid) but when I changed class to transcendent I still got 52 bonus stat point Quote
Haziel Posted October 16, 2015 Posted October 16, 2015 (edited) On src/map/pc.c.There's a function that grants or take the Transcedent Classes' Bonus when a non-Trans turn into Trans and vice-versa. // Give or reduce transcendent status points if( (b_class&JOBL_UPPER) && !(sd->class_&JOBL_UPPER) ){ // Change from a non t class to a t class -> give points sd->status.status_point += battle_config.transcendent_status_points; clif_updatestatus(sd,SP_STATUSPOINT); }else if( !(b_class&JOBL_UPPER) && (sd->class_&JOBL_UPPER) ){ // Change from a t class to a non t class -> remove points if( sd->status.status_point < battle_config.transcendent_status_points ){ // The player already used his bonus points, so we have to reset his status points pc_resetstate(sd); } sd->status.status_point -= battle_config.transcendent_status_points; clif_updatestatus(sd,SP_STATUSPOINT); } The answer for your task may be there, try to modify, disable or comment it. Edited October 16, 2015 by Haziel Quote
zaruramen Posted October 16, 2015 Author Posted October 16, 2015 What do you mean by stat bonus @.@ when I'm level 99 I got 1325 point with transcendent class but with other class I got 1273 point. Quote
Emistry Posted October 18, 2015 Posted October 18, 2015 hello I try to set this // Status points bonus for transcendent class transcendent_status_points: 52 to 1 (0 is invalid) but when I changed class to transcendent I still got 52 bonus stat point did you reload the setting using @reloadbattleconf? Quote
zaruramen Posted October 18, 2015 Author Posted October 18, 2015 (edited) hello I try to set this // Status points bonus for transcendent class transcendent_status_points: 52 to 1 (0 is invalid) but when I changed class to transcendent I still got 52 bonus stat point did you reload the setting using @reloadbattleconf? yes I did @Haziel Worked Thank you very much Edited October 18, 2015 by zaruramen Quote
Question
zaruramen
hello
I try to set this
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.