n3ySkie Posted May 2, 2024 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 51 Reputation: 2 Joined: 07/28/14 Last Seen: Yesterday at 08:51 AM Share Posted May 2, 2024 good day guys, how to remove the bonus 30% reudce casting time of bragi's poem Quote Link to comment Share on other sites More sharing options...
0 Chaos92 Posted May 2, 2024 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1826 Reputation: 288 Joined: 08/03/12 Last Seen: 29 minutes ago Share Posted May 2, 2024 32 minutes ago, Emonizer08 said: good day guys, how to remove the bonus 30% reudce casting time of bragi's poem I think its from this line : https://github.com/rathena/rathena/blob/master/src/map/skill.cpp#L15154C7-L15154C20 case BA_POEMBRAGI: val1 = 3 * skill_lv + status->dex / 10; // Casting time reduction //For some reason at level 10 the base delay reduction is 50%. val2 = (skill_lv < 10 ? 3 * skill_lv : 50) + status->int_ / 5; // After-cast delay reduction if (sd) { val1 += pc_checkskill(sd, BA_MUSICALLESSON); val2 += 2 * pc_checkskill(sd, BA_MUSICALLESSON); } break; Maybe you can change the formula then depends on your needs. if you want to remove the casting time reduction, maybe make the val1 value is 0. Quote Link to comment Share on other sites More sharing options...
Question
n3ySkie
good day guys, how to remove the bonus 30% reudce casting time of bragi's poem
Link to comment
Share on other sites
1 answer 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.