Kambroz Posted June 6, 2017 Posted June 6, 2017 Hi everyone, does anyone know how I can modify the damage of the skill Cart Termination and Acid demonstration? I hope someone can help me. Thank you. Quote
0 Ninja Posted June 7, 2017 Posted June 7, 2017 battle.c :: battle_calc_attack_skill_ratio case WS_CARTTERMINATION: i = 10 * (16 - skill_lv); if (i < 1) i = 1; //Preserve damage ratio when max cart weight is changed. if (sd && sd->cart_weight) skillratio += sd->cart_weight / i * 80000 / battle_config.max_cart_weight - 100; else if (!sd) skillratio += 80000 / i - 100; break; Quote
0 Noctis Posted June 6, 2017 Posted June 6, 2017 Try to Check it in src-map-skill.c Or in battle.c Quote
0 pumks Posted September 20, 2017 Posted September 20, 2017 On Wednesday, June 07, 2017 at 8:52 AM, Ninja said: battle.c :: battle_calc_attack_skill_ratio case WS_CARTTERMINATION: i = 10 * (16 - skill_lv); if (i < 1) i = 1; //Preserve damage ratio when max cart weight is changed. if (sd && sd->cart_weight) skillratio += sd->cart_weight / i * 80000 / battle_config.max_cart_weight - 100; else if (!sd) skillratio += 80000 / i - 100; break; Which one must be edit? Can you give me example formula for that both skill? Quote
Question
Kambroz
Hi everyone, does anyone know how I can modify the damage of the skill Cart Termination and Acid demonstration? I hope someone can help me. Thank you.
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.