Strand Posted June 18, 2020 Posted June 18, 2020 (edited) Hello guys, I have a question in regards to AC_DOUBLE skill description formula in relation to the source code in battle.cpp. Sadly I can't relate one to the other since I'm not understanding the source. Can someone kindly interpret it to me? Where is the (75+5*SkillLV)% formula showing on the source? Specially the 75. case AC_SHOWER: case MA_SHOWER: #ifdef RENEWAL skillratio += 50 + 10 * skill_lv; #else skillratio += -25 + 5 * skill_lv; #endif break; Edited June 18, 2020 by Strand Quote
0 Dazzu Posted June 19, 2020 Posted June 19, 2020 (edited) skillratio has an initial value of 100 that denotes the "base" ratio of the skill. Within the context of the Arrow Shower formula, a more complete calculation would be: 100 - 25 + 5 * skillLV Edited June 19, 2020 by Dazzu Quote
Question
Strand
Hello guys,
I have a question in regards to AC_DOUBLE skill description formula in relation to the source code in battle.cpp.
Sadly I can't relate one to the other since I'm not understanding the source. Can someone kindly interpret it to me?
Where is the (75+5*SkillLV)% formula showing on the source? Specially the 75.
case AC_SHOWER: case MA_SHOWER: #ifdef RENEWAL skillratio += 50 + 10 * skill_lv; #else skillratio += -25 + 5 * skill_lv; #endif break;
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.