gunzlinger - Jul 24, 2013 6:55
From iROwiki -
Limitations
When wearing madogear, the player is unable to receive certain supportive skills, such as:
Increase Agility
However, the player can receive Increase Agility from Canto Candidus.
This does not seem to be working at all.
sphkz - Jul 24, 2013 15:07
Maybe it works likes it (not tested) :
[code=auto:0]
in skill.c @ line 7958
change : clif->skill_nodamage(bl, bl, skill_id, skill_lv, sc_start(bl, type, 100, i + (sd?(sd->status.job_level / 10):0), skill->get_time(skill_id,skill_lv)));
to : clif->skill_nodamage(bl, bl, skill_id, skill_lv, sc_start(bl, type, 100, i + (sd?(sd->status.job_level / 10):0), skill_id == AB_CANTO ? 1:0, skill->get_time(skill_id,skill_lv)));
in status.c @ line 6709
add after case SC_INC_AGI :
if (sc->data[SC_QUAGMIRE])
return 0;
if(sc->option&OPTION_MADOGEAR && sc->data[SC_INC_AGI]->val3 != 1)
return 0;//Mado is immune to increase agi if it was not casted from Canto Candidus
break;
[/code]
malufett - Jul 28, 2013 13:57
Fixed @ 4f441379e35619da60ddd94d44d3a5b5bb8a49b4
:meow: