Sage Soul Link

prism

New member
Messages
69
Points
0
How can I modify this link to increase the skill level cast by auto spell by one? Normally this link makes it autocast level equal to the user's learned level but with some with a custom item of ours that improves autospell this would be seriously OP.

 //Max chance, no skill_lv reduction. [skotlex]

This comment is near the part in the source from battle.c that seems to affect this.

 
This thread can be closed. After further investigation I found the answer I was looking for.

Skill.c 

else if(skill_id==MG_COLDBOLT || skill_id==MG_FIREBOLT || skill_id==MG_LIGHTNINGBOLT){
if (sd->sc.data[sC_SOULLINK] && sd->sc.data[sC_SOULLINK]->val2 == SL_SAGE)
maxlv =10; //Soul Linker bonus. [skotlex]
 
change the maxlvl = 10 to whatever level desired.
 
Back
Top