apple iduns max hp not increasing

Searched RMS,item_db, still can't find that name,

would you mind giving its ID?

 
can anyone help me about this? thanks in advance
Are you referring to The Apple of Idun? Also known as Song of Lutie o_o? If so, in skill.c it shows it increases your HP perfectly fine;

Code:
case BA_APPLEIDUN:val1 = 5+2*skill_lv+st->vit/10; // MaxHP percent increase if(sd)	val1 += pc->checkskill(sd,BA_MUSICALLESSON);break; 
 
Last edited by a moderator:
its only not increasing to self but it gives to others

screenHercules016.jpg

 
can anyone help me about this? thanks in advance
Are you referring to The Apple of Idun? Also known as Song of Lutie o_o? If so, in skill.c it shows it increases your HP perfectly fine;

case BA_APPLEIDUN:val1 = 5+2*skill_lv+st->vit/10; // MaxHP percent increase if(sd) val1 += pc->checkskill(sd,BA_MUSICALLESSON);break; 
@msyterious the skill is working but it say on the description max hp +25% but when i use it only gives 12% of my max hp...and in other players that inside the apple of iduns gives 13%....

all i want is to increase the effect of the apple iduns i already try to increase the value but nothing change...

 
val1 = 5+2*skill_lv+st->vit/10; // MaxHP percent increase

Change this Formula and RECOMPILE, without recompile it won't come in effect.

 
Back
Top