Issue information

Issue ID
#6029
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jun 15, 2012 11:46
Last Post
Hercules Elf Bot
Jun 23, 2012 6:59
Confirmation
Yes (2)
No (0)

Hercules Elf Bot - Jun 15, 2012 11:46

Originally posted by [b]exneval[/b]
According to [url="http://forums.irowiki.org/showthread.php?t=83644"]this[/url][list]
[*]Howling of Mandragora
[list]
[*]Area of effect changed (11x11 / 13x13 / 13x13 / 15x15 / 15x15).
[*][color=#FF0000]Success rate changed.[/color]
[/list]
[/list]
And the Genetic Doc :

[b]Howling of Mandragora[/b]

Variable Cast Time: 1 second
Skill re-use Delay: 15 seconds
Global Skill Delay: 0.5 second
AoE: Level 1: 11x11
Level 2 ~ 3: 13x13
Level 4 ~ 5: 15x15
INT reduction: - 4 * Skill Level
SP drain: (25 + 5 * Skill Level) %
[color=#008000]Success chance: ( Howling of Mandragora Base Success chance ) - {( Target’s VIT + LUK ) / 5 }[/color]
[color=#008000]Base success chance: (25 + 10 * Skill Level) %[/color]
[color=#008000]Minimum of 10% success Chance.[/color]
Fixed Cast Time increase: (Howling of Mandragora Skill Level / 2) seconds
Duration: (Howling of Mandragora Skill Level + 1) * 5 seconds.

But in skill.c rAthena no vit and luk status check for the chance
[color=#0000ff]rAthena's success chance: (35 + 10 * Skill Level) %[/color]

[CODE]
case GN_MANDRAGORA:
if( flag&1 )
{
if ( clif_skill_nodamage(bl, src, skillid, skilllv,
sc_start(bl, type, 35 + 10 * skilllv, skilllv, skill_get_time(skillid, skilllv))) )
status_zap(bl, 0, status_get_max_sp(bl) / 100 * 25 + 5 * skilllv);
}
else
map_foreachinrange(skill_area_sub, bl, skill_get_splash(skillid, skilllv), BL_CHAR,
src, skillid, skilllv, tick, flag|BCT_ENEMY|1, skill_castend_nodamage_id);
break;
[/CODE]

Correct me if I wrong, for this issue

This post has been edited by exneval on Jun 15, 2012 11:47

Hercules Elf Bot - Jun 15, 2012 11:54

Originally posted by [b]malufett[/b]
Confirmed..I'll fixed it later...

Hercules Elf Bot - Jun 15, 2012 11:58

Originally posted by [b]exneval[/b]
thx

Hercules Elf Bot - Jun 15, 2012 14:59

Originally posted by [b]malufett[/b]
Fixed @ [rev='16305']