pajodex 0 Posted May 24, 2014 How can I increase the healing effect buff of the Meditation skills of priest? Quote Share this post Link to post Share on other sites
0 quesoph 105 Posted May 24, 2014 I think this is what you are looking for https://github.com/HerculesWS/Hercules/blob/master/src/map/skill.c#L361 hp = ( status->get_lv(src) + status_get_int(src) ) / 8 * (4 + ( skill_id == AB_HIGHNESSHEAL ? ( sd ? pc->checkskill(sd,AL_HEAL) : 10 ) : skill_lv ) * 8); try to change it to: hp = ( status->get_lv(src) + status_get_int(src) ) / 4 * (4 + ( skill_id == AB_HIGHNESSHEAL ? ( sd ? pc->checkskill(sd,AL_HEAL) : 10 ) : skill_lv ) * 8); to make it x2. Quote Share this post Link to post Share on other sites
How can I increase the healing effect buff of the Meditation skills of priest?
Share this post
Link to post
Share on other sites