glemor123 1 Posted January 3, 2014 How to increase flying side kick skill of star gladiator via source modification Share this post Link to post Share on other sites
0 pan 87 Posted January 3, 2014 What do you want to increase in this skill? Share this post Link to post Share on other sites
0 glemor123 1 Posted January 4, 2014 What do you want to increase in this skill? the damage sir Share this post Link to post Share on other sites
0 pan 87 Posted January 4, 2014 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 glemor123 1 Posted January 4, 2014 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 pan 87 Posted January 4, 2014 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 attackPlus 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
How to increase flying side kick skill of star gladiator via source modification
Share this post
Link to post
Share on other sites