RumbleRO Posted February 13, 2023 Group: Members Topic Count: 10 Topics Per Day: 0.01 Content Count: 27 Reputation: 2 Joined: 09/02/22 Last Seen: 4 hours ago Share Posted February 13, 2023 Hello! I am currently using the latest rAthena and this seems to be NOT working. I just want to ask if why I am getting this error. Thank you so much! 1 Quote Link to comment Share on other sites More sharing options...
0 pajodex Posted February 13, 2023 Group: Members Topic Count: 79 Topics Per Day: 0.03 Content Count: 439 Reputation: 173 Joined: 12/12/17 Last Seen: Monday at 05:33 PM Share Posted February 13, 2023 try changing `sc->data` into `sc->getSCE`... Quote Link to comment Share on other sites More sharing options...
0 Katakuri Posted February 13, 2023 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 110 Reputation: 57 Joined: 05/29/18 Last Seen: Friday at 02:27 AM Share Posted February 13, 2023 find this function on skill.cpp case MO_BODYRELOCATION: if (unit_movepos(src, x, y, 2, 1)) { then add before the if (unit_movepos(src, x, y, 2, 1)) { case MO_BODYRELOCATION: + // Block skill usage while you are under spider web, ankle snare & close confine + if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLE] || sc->data[SC_CLOSECONFINE2])) + break; if (unit_movepos(src, x, y, 2, 1)) then recompile. Quote Link to comment Share on other sites More sharing options...
0 RumbleRO Posted February 13, 2023 Group: Members Topic Count: 10 Topics Per Day: 0.01 Content Count: 27 Reputation: 2 Joined: 09/02/22 Last Seen: 4 hours ago Author Share Posted February 13, 2023 11 minutes ago, Katakuri said: find this function on skill.cpp case MO_BODYRELOCATION: if (unit_movepos(src, x, y, 2, 1)) { then add before the if (unit_movepos(src, x, y, 2, 1)) { case MO_BODYRELOCATION: + // Block skill usage while you are under spider web, ankle snare & close confine + if(sc && (sc->data[SC_SPIDERWEB] || sc->data[SC_ANKLE] || sc->data[SC_CLOSECONFINE2])) + break; if (unit_movepos(src, x, y, 2, 1)) then recompile. This does not work. That is what is in my attached picture. Quote Link to comment Share on other sites More sharing options...
0 RumbleRO Posted February 13, 2023 Group: Members Topic Count: 10 Topics Per Day: 0.01 Content Count: 27 Reputation: 2 Joined: 09/02/22 Last Seen: 4 hours ago Author Share Posted February 13, 2023 4 hours ago, pajodex said: try changing `sc->data` into `sc->getSCE`... This is the error sir. Quote Link to comment Share on other sites More sharing options...
0 RumbleRO Posted February 13, 2023 Group: Members Topic Count: 10 Topics Per Day: 0.01 Content Count: 27 Reputation: 2 Joined: 09/02/22 Last Seen: 4 hours ago Author Share Posted February 13, 2023 case MO_BODYRELOCATION: if(sc && (sc->getSCE(SC_SPIDERWEB) || sc->getSCE(SC_ANKLE))) break; if (unit_movepos(src, x, y, 2, 1)) { Hello. Solved it! Thanks @pajodex @Katakuri Quote Link to comment Share on other sites More sharing options...
Question
RumbleRO
Hello! I am currently using the latest rAthena and this seems to be NOT working.
I just want to ask if why I am getting this error. Thank you so much!
Link to comment
Share on other sites
5 answers 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.