Jump to content
  • 0

Question

5 answers to this question

Recommended Posts

  • 0

Open src/map/battle.c and search for:

				case TK_JUMPKICK:					skillratio += -70 + 10*skill_lv;					if (sc && sc->data[SC_COMBOATTACK] && sc->data[SC_COMBOATTACK]->val1 == skill_id)						skillratio += 10 * status->get_lv(src) / 3; //Tumble bonus					if (flag) {						skillratio += 10 * status->get_lv(src) / 3; //Running bonus (TODO: What is the real bonus?)						if( sc && sc->data[SC_STRUP] )  // Spurt bonus							skillratio *= 2;					}					break;
Change skillratio += -70 + 10*skill_lv; to whichever value you want, remember that this value is in %

Share this post


Link to post
Share on other sites
  • 0

 

Open src/map/battle.c and search for:

				case TK_JUMPKICK:					skillratio += -70 + 10*skill_lv;					if (sc && sc->data[SC_COMBOATTACK] && sc->data[SC_COMBOATTACK]->val1 == skill_id)						skillratio += 10 * status->get_lv(src) / 3; //Tumble bonus					if (flag) {						skillratio += 10 * status->get_lv(src) / 3; //Running bonus (TODO: What is the real bonus?)						if( sc && sc->data[SC_STRUP] )  // Spurt bonus							skillratio *= 2;					}					break;
Change skillratio += -70 + 10*skill_lv; to whichever value you want, remember that this value is in %

what is -70 here? and the +10?

Share this post


Link to post
Share on other sites
  • 0

They're the values that define the % of attack that'll be added when this skill is used.

For instance if the player has this skill in level 5 it would add:

-70 + 10*skill_lv-70 + (10*7) = 0% base attack
Plus other additions that depend on statuses... Don't forget that this skill does triple damage, so if your base attack is 152 and your skill lv is 7:
attack = base_attack + (base_attack*70/100)attack = 152 + 152*70/100attack = 258,4

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

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