mauiboy Posted May 6, 2024 Posted May 6, 2024 Hello again, I'm looking for Sage's Link that allows Auto Spell Skill always cast level 10 bolts or the current level of every bolt skills. Thank You! Quote
0 xsicho Posted May 26, 2024 Posted May 26, 2024 In battle.c if (sc && sc->data[SC_AUTOSPELL] && rnd()%100 < sc->data[SC_AUTOSPELL]->val4) { int sp = 0; uint16 skill_id = sc->data[SC_AUTOSPELL]->val2; uint16 skill_lv = sc->data[SC_AUTOSPELL]->val3; int i = rnd()%100; if (sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_SAGE) //comment out this line to remove spirit requirement i = 0; //Max chance, no skill_lv reduction. [Skotlex] //reduction only for skill_lv > 1 if (skill_lv > 1) { if (i >= 50) skill_lv /= 2; else if (i >= 15) skill_lv--; } Just comment out the "if (sc->data[SC_SPIRIT]" to make it like you always have the sage link. Quote
Question
mauiboy
Hello again, I'm looking for Sage's Link that allows Auto Spell Skill always cast level 10 bolts or the current level of every bolt skills. Thank You!
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.