zaruramen Posted October 15, 2015 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 41 Reputation: 0 Joined: 08/27/15 Last Seen: October 22, 2016 Share 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 Link to comment Share on other sites More sharing options...
Haziel Posted October 16, 2015 Group: Content Moderator Topic Count: 22 Topics Per Day: 0.00 Content Count: 639 Reputation: 609 Joined: 11/25/11 Last Seen: March 7 Share 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 Link to comment Share on other sites More sharing options...
Nullifier Posted October 16, 2015 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 140 Reputation: 11 Joined: 09/28/14 Last Seen: November 7, 2024 Share Posted October 16, 2015 What do you mean by stat bonus @.@ Quote Link to comment Share on other sites More sharing options...
zaruramen Posted October 16, 2015 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 41 Reputation: 0 Joined: 08/27/15 Last Seen: October 22, 2016 Author Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted October 18, 2015 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Thursday at 04:49 PM Share 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 Link to comment Share on other sites More sharing options...
zaruramen Posted October 18, 2015 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 41 Reputation: 0 Joined: 08/27/15 Last Seen: October 22, 2016 Author Share 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 Link to comment Share on other sites More sharing options...
Question
zaruramen
hello
I try to set this
Link to comment
Share on other sites
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.