Skill Nerf

Azhura

New member
Messages
50
Points
0
I would like to nerf the skill effect of some job specifically for Bard and Dancer. Where should I modify if I would like to nerf for example the skill effect of Idun's Apple? Thank you in advance.

 
be more specific

nerf the healing rate ? nerf the timer in between heal ? or just nerf the bard skill level to 3 max ...

 
be more specific

nerf the healing rate ? nerf the timer in between heal ? or just nerf the bard skill level to 3 max ...


Nerf the hp increase of that skill.

For the skill max level modification is it on skill_db?

 
I just noticed the latest ... songs ... are different from my memory .....WTF (20190530 client)
 

ok so go back to 20180620 client

case BA_APPLEIDUN:
#ifdef RENEWAL
hp = 100+2*skill_lv+5*(status_get_vit(src)/10); // HP recovery
#else // not RENEWAL
hp = 30+5*skill_lv+5*(status_get_vit(src)/10); // HP recovery
#endif // RENEWAL
if( sd )
hp += 5*pc->checkskill(sd,BA_MUSICALLESSON);
break;

Code:
		case BA_APPLEIDUN:
			val1 = 5+1000*skill_lv+st->vit/10; // MaxHP percent increase
			if(sd)
				val1 += pc->checkskill(sd,BA_MUSICALLESSON);
			break;

max level modification need to done both client side and server side




 
Last edited by a moderator:
Back
Top