Eross Posted August 2, 2021 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Thursday at 10:15 AM Share Posted August 2, 2021 Regarding critical on PR_MACEMASTERY passive .. How to add +1 critical for every skill level ? Thankyou ! Quote Link to comment Share on other sites More sharing options...
0 Dazzu Posted August 5, 2021 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 12 Reputation: 3 Joined: 04/29/14 Last Seen: May 23, 2023 Share Posted August 5, 2021 In status.cpp, under the status_calc_pc_sub function Under this code block: #ifdef RENEWAL if ((skill = pc_checkskill(sd, DC_DANCINGLESSON)) > 0) base_status->cri += skill * 10; if ((skill = pc_checkskill(sd, PR_MACEMASTERY)) > 0 && (sd->status.weapon == W_MACE || sd->status.weapon == W_2HMACE)) base_status->cri += skill * 10; #endif Insert: if ((skill = pc_checkskill(sd, PD_MACEMASTERY)) > 0) base_status->cri += skill * 10; 1 Quote Link to comment Share on other sites More sharing options...
0 Eross Posted August 7, 2021 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Thursday at 10:15 AM Author Share Posted August 7, 2021 On 8/5/2021 at 4:06 PM, Dazzu said: In status.cpp, under the status_calc_pc_sub function Under this code block: #ifdef RENEWAL if ((skill = pc_checkskill(sd, DC_DANCINGLESSON)) > 0) base_status->cri += skill * 10; if ((skill = pc_checkskill(sd, PR_MACEMASTERY)) > 0 && (sd->status.weapon == W_MACE || sd->status.weapon == W_2HMACE)) base_status->cri += skill * 10; #endif Insert: if ((skill = pc_checkskill(sd, PD_MACEMASTERY)) > 0) base_status->cri += skill * 10; Hi I cant find those lines on my status.cpp sir Quote Link to comment Share on other sites More sharing options...
0 Dazzu Posted August 7, 2021 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 12 Reputation: 3 Joined: 04/29/14 Last Seen: May 23, 2023 Share Posted August 7, 2021 (edited) I see it in the rAthena repo. Look harder. Edited August 7, 2021 by Dazzu Quote Link to comment Share on other sites More sharing options...
0 Eross Posted August 7, 2021 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Thursday at 10:15 AM Author Share Posted August 7, 2021 6 hours ago, Dazzu said: I see it in the rAthena repo. Look harder. Hi ! thanks for your help ! ive already done it by adding manually .. Thanks for your help sir ! Quote Link to comment Share on other sites More sharing options...
Question
Eross
Regarding critical on PR_MACEMASTERY passive .. How to add +1 critical for every skill level ? Thankyou !
Link to comment
Share on other sites
4 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.