Pandaaa
New member
Hello,
I would like to increase the auto blitz and skill blitz beat like 30% without touching damage of falcon assault.
here's the script i tried tto modify and i failed..
(Blitz Beat increased also falcon assault increase damage but the auto doesn't)
battle.c
I would like to increase the auto blitz and skill blitz beat like 30% without touching damage of falcon assault.
here's the script i tried tto modify and i failed..
(Blitz Beat increased also falcon assault increase damage but the auto doesn't)
battle.c
Code:
case HT_BLITZBEAT:
case SN_FALCONASSAULT:
//Blitz-beat Damage.
if(!sd || (temp = pc->checkskill(sd,HT_STEELCROW)) <= 0)
temp=0;
md.damage=(sstatus->dex/10+sstatus->int_/2+temp*3+40)*2;
if(mflag > 1) //Autocasted Blitz.
nk|=NK_SPLASHSPLIT;
if (skill_id == SN_FALCONASSAULT) {
//Div fix of Blitzbeat
temp = skill->get_num(HT_BLITZBEAT, 5);
damage_div_fix(md.damage, temp);
//Falcon Assault Modifier
md.damage=md.damage*(150+70*skill_lv)/100;
}