Jump to content
  • 0

Double Strafe Skill Formula


Question

Posted (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;

 

image.png

Edited by Strand

1 answer to this question

Recommended Posts

  • 0
Posted (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 by Dazzu

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...