Warning! This is the old Hercules bugtracker archive, and may not reflect the current state of Hercules. The current bugtracker is on GitHub Issues.
Issue information
Issue ID
#5330
Status
Needs more Info
Severity
None
Started
Hercules Elf Bot
Feb 14, 2012 3:04
Last Post
Hercules Elf Bot
Feb 18, 2012 0:32
Confirmation
N/A
Hercules Elf Bot - Feb 14, 2012 3:04
Originally posted by [b]Variant[/b] The boost doesn't work because:
[CODE]
case BD_RINGNIBELUNGEN:
val1 = (skilllv+2)*25; //Watk increase
break;
[/CODE]
in skill.c changes val1.
However...
[CODE]
if(sc->data[SC_NIBELUNGEN]) {
if (bl->type != BL_PC)
watk += sc->data[SC_NIBELUNGEN]->val2;
else {
TBL_PC *sd = (TBL_PC*)bl;
int index = sd->equip_index[sd->state.lr_flag?EQI_HAND_L:EQI_HAND_R];
if(index >= 0 && sd->inventory_data[index] && sd->inventory_data[index]->wlv == 4)
watk += sc->data[SC_NIBELUNGEN]->val2;
}
}
[/CODE]
in status.c (status_calc_watk)
Uses val2, which, as far as I've seen isn't set anywhere.
This post has been edited by
Variant
on Feb 14, 2012 3:05
Hercules Elf Bot - Feb 17, 2012 17:27
Originally posted by [b]Ind[/b] The boost works -- and val1 in that part of the code translates to val2 in status change (yes confuse isn't it?) as in status change val1 is the skill level. I've tested and confirmed -- requires you to be in a party with the ensamble though, is that official?
Hercules Elf Bot - Feb 17, 2012 20:33
Originally posted by [b]Variant[/b] I see, the ensemble part was why it wasn't working, I understand now, my mistake. However...
It looks like the renewal version doesn't have the level 4 weapon requirement (I assume the pre-re one still does though).
Hercules Elf Bot - Feb 17, 2012 21:23
Originally posted by [b]Ind[/b] Pierces Def? (iroWiki said that) our current one boosts weapon attack
Hercules Elf Bot - Feb 18, 2012 0:32
Originally posted by [b]Variant[/b] From all the information given (RMS, irowiki) it seems like the damage it adds is defense piercing (the bonus damage isn't affected by defense).
In other words a player that would do 100 damage on a person with 50 defense would do 50 damage, but with Ring of Nibelungen they would do (100 damage * .5 defense modifier) + 175 damage from level 5 ring of nibelungen.
Sources:
[url="http://ratemyserver.net/index.php?sk_name=ring+of+nibelungen&page=skill_db&sk_search=Search"]http://ratemyserver.net/index.php?sk_name=ring+of+nibelungen&page=skill_db&sk_search=Search[/url]
the iRO Wiki page linked earlier
Edit:
I'm pretty sure resistances from things like thara frog still apply, but I can't verify this, I'll look around for some more valid sources.
This post has been edited by
Variant
on Feb 18, 2012 4:51