NANORAY Posted April 5, 2012 Group: Members Topic Count: 95 Topics Per Day: 0.02 Content Count: 210 Reputation: 3 Joined: 12/20/11 Last Seen: March 1, 2019 Share Posted April 5, 2012 (edited) step how to fix: 1. you go to src>map>skill.c 2. find case MO_BODYRELOCATION: if (unit_movepos(src, x, y, 1, 1)) { clif_skill_poseffect(src,skillid,skilllv,src->x,src->y,tick); // clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client... if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000); } 3. remove the comment //beside clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client... 4.it will look like this: case MO_BODYRELOCATION: if (unit_movepos(src, x, y, 1, 1)) { clif_skill_poseffect(src,skillid,skilllv,src->x,src->y,tick); clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client... if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000); } 5. then save it and recompile Edited April 5, 2012 by NANORAY 1 Quote Link to comment Share on other sites More sharing options...
Vali Posted April 5, 2012 Group: Members Topic Count: 20 Topics Per Day: 0.00 Content Count: 128 Reputation: 7 Joined: 12/29/11 Last Seen: July 2, 2013 Share Posted April 5, 2012 I was looking for this. Thank you very much NANORAY. Vali~ Quote Link to comment Share on other sites More sharing options...
Chief Posted April 5, 2012 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 23 Reputation: 0 Joined: 01/19/12 Last Seen: January 17, 2021 Share Posted April 5, 2012 (edited) I'm going to try to see if this works. Tested on 2011-11-22a It works. Appreciate the guide! Edited April 5, 2012 by Chief Quote Link to comment Share on other sites More sharing options...
simplemhan Posted April 5, 2012 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 308 Reputation: 3 Joined: 12/18/11 Last Seen: March 4, 2014 Share Posted April 5, 2012 its really working, cause i remove the comment a long time ago when i make the 2011-11-22 lub to lua files. Quote Link to comment Share on other sites More sharing options...
Igniz Posted April 5, 2012 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 69 Reputation: 15 Joined: 12/06/11 Last Seen: August 7, 2024 Share Posted April 5, 2012 (edited) Tested on 2011-11-22, crashes the map server..,, Nevermind, only crashes on brAthena. Edited April 5, 2012 by Igniz Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 1, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 19 hours ago Share Posted June 1, 2012 is this the fix for body relocation client 2011-11-22 and up? Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 1, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 2 hours ago Share Posted June 1, 2012 nope..it is just a temp fix...not an official fix.. use at your own risk ~ ^^ Quote Link to comment Share on other sites More sharing options...
jysn Posted June 14, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 72 Reputation: 4 Joined: 01/22/12 Last Seen: March 18, 2013 Share Posted June 14, 2012 this is working but seems the body relocation is too fast than the official. Quote Link to comment Share on other sites More sharing options...
busterdemon Posted June 14, 2012 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 93 Reputation: 1 Joined: 06/01/12 Last Seen: July 17, 2013 Share Posted June 14, 2012 Is this going to fix body relocation when IG it says Skill failed.. If so where is the line I cant find it. If not well whats the solution for skill failed bodyrelocation.? Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 15, 2012 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 19 hours ago Share Posted June 15, 2012 this is working but seems the body relocation is too fast than the official. because its not the official body relocation. it has no animation. Quote Link to comment Share on other sites More sharing options...
Question
NANORAY
step how to fix:
1. you go to src>map>skill.c
2. find case MO_BODYRELOCATION:
if (unit_movepos(src, x, y, 1, 1)) {
clif_skill_poseffect(src,skillid,skilllv,src->x,src->y,tick);
// clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client...
if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000);
}
3. remove the comment //beside clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client...
4.it will look like this:
case MO_BODYRELOCATION:
if (unit_movepos(src, x, y, 1, 1)) {
clif_skill_poseffect(src,skillid,skilllv,src->x,src->y,tick);
clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client...
if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000);
}
5. then save it and recompile
Edited by NANORAYLink to comment
Share on other sites
9 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.