sakura125 Posted October 28, 2023 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 37 Reputation: 0 Joined: 05/11/16 Last Seen: February 22 Share Posted October 28, 2023 Does anyone able to mitigate the Soul Link Modification using the latest git? Can anyone help me mitigate it? Quote Link to comment Share on other sites More sharing options...
0 Bringer Posted October 29, 2023 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 748 Reputation: 47 Joined: 03/12/14 Last Seen: Friday at 09:17 AM Share Posted October 29, 2023 18 hours ago, sakura125 said: Does anyone able to mitigate the Soul Link Modification using the latest git? Can anyone help me mitigate it? can you post your SL MOD old Code if((skill = pc_checkskill(sd,HT_BEASTBANE)) > 0 && (status->race == RC_INSECT || status->race == RC_BRUTE || status->race == RC_PLAYER_DORAM) ) { damage += (skill * 4); if (sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_HUNTER) damage += sd->status.str; } New Code if((skill = pc_checkskill(sd,HT_BEASTBANE)) > 0 && (status->race == RC_INSECT || status->race == RC_BRUTE || status->race == RC_PLAYER_DORAM) ) { damage += (skill * 4); if (sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_HUNTER) damage += sd->status.str; } sd->sc.data[SC_SPIRIT] Change to sd->sc.getSCE(SC_SPIRIT) Quote Link to comment Share on other sites More sharing options...
Question
sakura125
Does anyone able to mitigate the Soul Link Modification using the latest git? Can anyone help me mitigate it?
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.