K1NGRAFFY Posted May 13, 2017 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 52 Reputation: 3 Joined: 04/23/17 Last Seen: July 20, 2020 Share Posted May 13, 2017 How to make my server in bragi based? Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted May 13, 2017 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 1138 Reputation: 290 Joined: 04/29/13 Last Seen: July 20, 2024 Share Posted May 13, 2017 3 hours ago, K1NGRAFFY said: How to make my server in bragi based? what do you mean bragi base? Quote Link to comment Share on other sites More sharing options...
0 Mephisto Posted May 13, 2017 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 56 Reputation: 6 Joined: 03/21/17 Last Seen: July 25, 2017 Share Posted May 13, 2017 Make after cast delay default and dont make agi/dex based. Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted May 15, 2017 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: Monday at 09:07 AM Share Posted May 15, 2017 Go to skill.c and find: 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; Then put whatever formula you want. The comments already tell you what val1 and val2 means. Quote Link to comment Share on other sites More sharing options...
Question
K1NGRAFFY
How to make my server in bragi based?
Link to comment
Share on other sites
3 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.