Jump to content
  • 1

body relocation (i think this is the problem why snap won't work properly)


NANORAY

Question


  • Group:  Members
  • Topic Count:  95
  • Topics Per Day:  0.02
  • Content Count:  210
  • Reputation:   3
  • Joined:  12/20/11
  • Last Seen:  

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 NANORAY
  • Upvote 1
Link to comment
Share on other sites

9 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.00
  • Content Count:  128
  • Reputation:   7
  • Joined:  12/29/11
  • Last Seen:  

I was looking for this. Thank you very much NANORAY.

Vali~

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   0
  • Joined:  01/19/12
  • Last Seen:  

I'm going to try to see if this works.

Tested on 2011-11-22a It works. Appreciate the guide!

Edited by Chief
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  308
  • Reputation:   3
  • Joined:  12/18/11
  • Last Seen:  

its really working, cause i remove the comment a long time ago when i make the 2011-11-22 lub to lua files.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  69
  • Reputation:   15
  • Joined:  12/06/11
  • Last Seen:  

Tested on 2011-11-22, crashes the map server..,,

Nevermind, only crashes on brAthena.

Edited by Igniz
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

is this the fix for body relocation client 2011-11-22 and up?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

nope..it is just a temp fix...not an official fix..

use at your own risk ~ ^^

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  72
  • Reputation:   4
  • Joined:  01/22/12
  • Last Seen:  

this is working but seems the body relocation is too fast than the official. :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  93
  • Reputation:   1
  • Joined:  06/01/12
  • Last Seen:  

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.?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...