Jump to content
  • 0
Myth

Royal Guard Skill

Question

6 answers to this question

Recommended Posts

  • 0

How to reduce OVERBRAND skill?

 

How to add damage of exceed break?

Overbrand: src/map/battle.c find:

case LG_OVERBRAND:					skillratio += -100 + 400 * skill_lv + (pc->checkskill(sd,CR_SPEARQUICKEN) * 30);					RE_LVL_DMOD(100);					break;

 

Adjust to your liking.

 

Exceed break Im not so sure of.. =/

Share this post


Link to post
Share on other sites
  • 0

status.c

 

change this:

 

val1 *= 150; // 150 * skill_lv

 

 

  	 case SC_EXEEDBREAK:            val1 *= 150; // 150 * skill_lv            if( sd && sd->inventory_data[sd->equip_index[EQI_HAND_R]] ) {  // Chars.                val1 += (sd->inventory_data[sd->equip_index[EQI_HAND_R]]->weight/10 * sd->inventory_data[sd->equip_index[EQI_HAND_R]]->wlv * iStatus->get_lv(bl) / 100);                val1 += 15 * (sd ? sd->status.job_level:50) + 100;            }            else    // Mobs                val1 += (400 * iStatus->get_lv(bl) / 100) + (15 * (iStatus->get_lv(bl) / 2));    // About 1138% at mob_lvl 99. Is an aproximation to a standard weapon. [pakpil]            break;
Edited by quesoph

Share this post


Link to post
Share on other sites
  • 0

 

How to reduce OVERBRAND skill?

 

How to add damage of exceed break?

Overbrand: src/map/battle.c find:

case LG_OVERBRAND:					skillratio += -100 + 400 * skill_lv + (pc->checkskill(sd,CR_SPEARQUICKEN) * 30);					RE_LVL_DMOD(100);					break;

 

Adjust to your liking.

 

Exceed break Im not so sure of.. =/

 

ill edit 100+400 right?

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.