Issue information

Issue ID
#5683
Status
Fixed
Severity
Low
Started
Hercules Elf Bot
May 1, 2012 19:19
Last Post
Hercules Elf Bot
May 18, 2012 11:40
Confirmation
Yes (1)
No (0)

Hercules Elf Bot - May 1, 2012 19:19

Originally posted by [b]adan-01[/b]
Well, easy, when you use mado, you can cast the blacksmith skills.. and you shouldn't..
[url="http://irowiki.org/wiki/Mechanic"]http://irowiki.org/wiki/Mechanic[/url]
[color=#000000][font=sans-serif][size=3]MadoGear, useable skills and abilities change drastically.[b] A Mechanic can no longer use any of his old Blacksmith skills while riding in the MadoGear[/b], but instead is granted with powerful long-range attacks and supportive skills...all at a price, of course.[/size][/font][/color]
[b][color=#000000][font=sans-serif][size=3]When Riding a MadoGear, the Mechanic is gifted with a series of powerful ranged attacks. While they can't use any self-buffs [/size][/font][/color][/b]
[b][color=#000000][font=sans-serif][size=3]Please anyone willing to share the fix? I know 3ceam got this fixed.. But I can't find the script part..[/size][/font][/color][/b]

Hercules Elf Bot - May 1, 2012 19:49

Originally posted by [b]adan-01[/b]
Hey guys, I found the fix for this.. I will share, and you could add it to the svn :D Thanks to 3ceam SRC :D I added a fix here, because it's different on Rathena

OPEN STATUS.C
[b]Search for: [/b]

if (sc->option&OPTION_CHASEWALK && skill_num != ST_CHASEWALK)
return 0;

[b]Add below:[/b]

if( sc->option&OPTION_MADOGEAR && ((TBL_PC*)src)->skillitem != skill_num ) // [AdaN-01]
{
switch( skill_num )
{ //Blacksmiths and Mastersmiths skills are unusable when Mado is equipped. [Jobbie]
case BS_REPAIRWEAPON: case WS_MELTDOWN:
case BS_HAMMERFALL: case WS_CARTBOOST:
case BS_ADRENALINE: case WS_WEAPONREFINE:
case BS_WEAPONPERFECT: case WS_CARTTERMINATION:
case BS_OVERTHRUST: case WS_OVERTHRUSTMAX:
case BS_MAXIMIZE:
case BS_ADRENALINE2:
case BS_UNFAIRLYTRICK:
case BS_GREED:
return 0;
default: //Only Mechanic exlcusive skill can be used.
break;
}
}

Hercules Elf Bot - May 2, 2012 2:02

Originally posted by [b]GM Takumirai[/b]
need a confirmation of the said fix -

Hercules Elf Bot - May 2, 2012 5:10

Originally posted by [b]Ind[/b]
Should be fixed by [rev=16043]