Issue information

Issue ID
#2657
Status
Fixed
Severity
Fair
Started
Hercules Elf Bot
Jan 11, 2009 19:33
Last Post
Hercules Elf Bot
Oct 13, 2012 6:25
Confirmation
N/A

Hercules Elf Bot - Jan 11, 2009 19:33

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

(tried updating on 13439)

Sonic Blow - weapon change bug
Sonic Blow while wearing Ice Pick. :|


retail / official servers doesn't allow this anymore.

but my eAthena still allows them.

Any idea how to fix this ?

Am I the only one experiencing this ?

This post has been edited by NiknokSeyer: Jan 11 2009, 11:41 AM

Hercules Elf Bot - Dec 26, 2011 11:28

Originally posted by [b]Ind[/b]
[quote]
Only shows the animation, since SB has no casttime.
[/quote]
[quote]
um...is this prevention available to other skills?
People cannot change weapons within skills' delay,
or people cannot change weapons within SB's delay,
or people cannot equip a weapon that cannot cast the current using skill within its delay?

what if Injustice Card autocasts a Level 1 Sonic Blow, can people change weapons then?[/quote]
[quote]
You can't change weapons during animation/skilldelay on aegis?[/quote]

Hercules Elf Bot - Jul 1, 2012 12:36

Originally posted by [b]Ind[/b]
no new info in months, archiving.

Hercules Elf Bot - Oct 11, 2012 22:15

Originally posted by [b]esu1214[/b]
find the function in skill.c
[code]
int skill_check_condition_castend(struct map_session_data* sd, short skill, short lv)
[/code]
find
[code]
for( i = 0; i < MAX_SKILL_ITEM_REQUIRE; ++i )
[/code]
add before here
[code]
if( require.weapon && !pc_check_weapontype(sd,require.weapon) ) {
clif_skill_fail(sd,skill,6,0,0);
return 0;
}
[/code]

Hercules Elf Bot - Oct 12, 2012 13:14

Originally posted by [b]Ind[/b]
oh interesting. hmmm thank you esu1214

Hercules Elf Bot - Oct 12, 2012 13:26

Originally posted by [b]Ind[/b]
Should be fixed in [rev=16817] Thank you again.

Hercules Elf Bot - Oct 13, 2012 6:25

Originally posted by [b]esu1214[/b]
/ok That's nothing.