Originally posted by [b]Inquisetor90[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4071
CODE
case NJ_ISSEN:
wd.damage = 40*sstatus->str +skill_lv*(sstatus->hp/10 + 35);
wd.damage2 = 0;
status_set_hp(src, 1, 0);
break;
I noticed this was an old formula but is still being used around here and does not correspond to the formula stated in
http://irowiki.org/wiki/Killing_Stroke(STR*40) + (HP*8%*skill_lv) so it should be
CODE
case NJ_ISSEN:
wd.damage = 40*sstatus->str +8/100*skill_lv*sstatus->hp;
wd.damage2 = 0;
status_set_hp(src, 1, 0);
break;