mauiboy Posted May 6, 2024 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Share 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 Link to comment Share on other sites More sharing options...
0 xsicho Posted May 26, 2024 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 11/22/22 Last Seen: April 15 Share 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 Link to comment Share on other sites More sharing options...
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!
Link to comment
Share on other sites
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.