Jump to content
  • 0
Sign in to follow this  
pajodex

Meditation Skill of priest

Question

1 answer to this question

Recommended Posts

  • 0

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.

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
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.