Issue information

Issue ID
#6007
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jun 13, 2012 16:56
Last Post
Hercules Elf Bot
Jun 23, 2012 6:59
Confirmation
N/A

Hercules Elf Bot - Jun 13, 2012 16:56

Originally posted by [b]exneval[/b]
According to [url="http://forums.irowiki.org/showthread.php?t=83644"][b]08/31/2011 - Class Balance Changes[/b][/url]

Lauda Agnus[list]
[*]Now [color=#ff0000]also[/color] removes Burning, Freezing (Frost Mist) and Diamond Dust (Crystallization) status effects.
[*]Skill success rate is increased.
[/list]
but in rAthena this skill only removes Freeze, Stone , And Blind

skill.c
[code]-if( tsc && (tsc->data[SC_FREEZE] || tsc->data[SC_STONE] || tsc->data[SC_BLIND]) ) {
+if( tsc && (tsc->data[SC_FREEZE] || tsc->data[SC_STONE] || tsc->data[SC_BLIND] || tsc->data[SC_BURNING] || tsc->data[SC_FREEZING] || tsc->data[SC_CRYSTALIZE]) ) {
// Success Chance: (40 + 10 * Skill Level) %
if( rnd()%100 > 40+10*skilllv ) break;
status_change_end(bl, SC_FREEZE, INVALID_TIMER);
status_change_end(bl, SC_STONE, INVALID_TIMER);
status_change_end(bl, SC_BLIND, INVALID_TIMER);
+ status_change_end(bl, SC_BURNING, INVALID_TIMER);
+ status_change_end(bl, SC_FREEZING, INVALID_TIMER);
+ status_change_end(bl, SC_CRYSTALIZE, INVALID_TIMER);
}[/code]

This post has been edited by exneval on Jun 13, 2012 17:11

Hercules Elf Bot - Jun 13, 2012 18:27

Originally posted by [b]Igniz[/b]
Fixed partially on r[url="http://sourceforge.net/apps/trac/rathena/changeset/16287/"]16287[/url].

How many % are increased?

Hercules Elf Bot - Jun 13, 2012 19:57

Originally posted by [b]MarkZD[/b]
It's already the right chance, before it was 50% on lv 4.
Now it's 40+10*skilllv
[url="http://forums.warpportal.com/index.php?/topic/14185-arch-bishop/page__st__100"]http://forums.warppo...p/page__st__100[/url]

[url="https://docs.google.com/document/pub?id=1ESSiUmNwAbD4RA63vKSAgbUq4c98pykuOjCd9uaCFFs"]https://docs.google....pykuOjCd9uaCFFs[/url]

[url="http://trac.brathena.org/changeset/1113"]http://trac.brathena.../changeset/1113[/url]

This post has been edited by MarkZD on Jun 13, 2012 21:07

Hercules Elf Bot - Jun 14, 2012 3:21

Originally posted by [b]malufett[/b]
@Igniz why is it partial?

Hercules Elf Bot - Jun 14, 2012 20:48

Originally posted by [b]Igniz[/b]
Because i didn't know the increased % and i fixed the status effect only, but anyway, its fixed now.