pajodex New member Messages 42 Points 0 May 24, 2014 #2 How can I increase the healing effect buff of the Meditation skills of priest?
Q quesoph New member Messages 562 Points 0 Location Philippines Emulator May 24, 2014 #3 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.
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.