Issue information

Issue ID
#4008
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 12, 2010 9:53
Last Post
Hercules Elf Bot
Mar 5, 2012 14:52
Confirmation
N/A

Hercules Elf Bot - Jan 12, 2010 9:53

Originally posted by [b]GorthexTiger[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4008

I found this setting in conf/battle/monster.conf

QUOTE
// [MVP] Summoned monsters HP rate, that is, monsters summoned by an MVP will have this much HP. (Note 2)
mvp_hp_rate: 150


Default is 100, the 150 is for my server (I'm copy-pasting (IMG:style_emoticons/default/tongue.gif)).

Well the description says its for summoned MOBs, but according to this:

QUOTE
//Now that we know if it is an mvp or not, apply battle_config modifiers
[Skotlex] maxhp = (double)status->max_hp; if (db->mexp > 0) {

//Mvp if (battle_config.mvp_hp_rate != 100) maxhp = maxhp * (double)battle_config.mvp_hp_rate / 100.; } else //Normal mob if (battle_config.monster_hp_rate != 100) maxhp = maxhp * (double)battle_config.monster_hp_rate / 100.;


From my understanding of it, it looks like it applies to both MVPs as well. I don't know much about C, and I'm snooping around trying to figure stuff out, can anyone confirm this? Thanks in advance.

This post has been edited by GorthexTiger: Jan 12 2010, 01:53 AM