Issue information

Issue ID
#4468
Status
Fixed
Severity
Fair
Started
Hercules Elf Bot
Oct 6, 2010 3:49
Last Post
Hercules Elf Bot
May 9, 2012 7:33
Confirmation
Yes (1)
No (0)

Hercules Elf Bot - Oct 6, 2010 3:49

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

Based on trunk 14365:
In skill.c there is a unique piece of coding shown below
CODE
    case MG_FROSTDIVER:
    case WZ_FROSTNOVA:
        sc_start(bl,SC_FREEZE,skilllv*3+35,skilllv,skill_get_time2(skillid,skilllv));
        break;

    case WZ_STORMGUST:
         //Tharis pointed out that this is normal freeze chance with a base of 300%
        if(tsc->sg_counter >= 3 &&
            sc_start(bl,SC_FREEZE,300,skilllv,skill_get_time2(skillid,skilllv)))
            tsc->sg_counter = 0;


Frost nova according to ratemyserver and irowiki follows a different formula way before renewal started (iRO was on episode 11.3 when I first found out about it). However the frozen chance formula for frost diver remains unchanged. I suggest this should be changed to

CODE
    case MG_FROSTDIVER:
        sc_start(bl,SC_FREEZE,skilllv*3+35,skilllv,skill_get_time2(skillid,skilllv));
        break;

    case WZ_FROSTNOVA:
        sc_start(bl,SC_FREEZE,skilllv*5+33,skilllv,skill_get_time2(skillid,skilllv));
        break;

    case WZ_STORMGUST:
         //Tharis pointed out that this is normal freeze chance with a base of 300%
        if(tsc->sg_counter >= 3 &&
            sc_start(bl,SC_FREEZE,300,skilllv,skill_get_time2(skillid,skilllv)))
            tsc->sg_counter = 0;


This post has been edited by Inquisetor90: Oct 5 2010, 08:53 PM

Hercules Elf Bot - Dec 17, 2011 4:39

Originally posted by [b]Ind[/b]
would like confirmation / source. thanks

Hercules Elf Bot - Apr 23, 2012 21:57

Originally posted by [b]MarkZD[/b]
[url="http://irowiki.org/wiki/Frost_Nova"]http://irowiki.org/wiki/Frost_Nova[/url]
Freeze Chance % 38 43 48 53 58 63 68 73 78 83

Hercules Elf Bot - Apr 25, 2012 13:58

Originally posted by [b]Ind[/b]
Fixed in [rev=15972]