Jump to content
  • 0
Kambroz

Change Damage Cart Termination and Acid Demostration

Question

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.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

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;

 

Link to comment
Share on other sites

  • 0
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?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.