Jump to content
  • 0

Help me ask problem Body Relocation


Yasunari Ishibashi

Question


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  157
  • Reputation:   2
  • Joined:  01/06/12
  • Last Seen:  

can anyone know why my problems any use of these skills have to click 2x the target destination.

   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);

Edited by Yasunari Ishibashi
Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  2244
  • Reputation:   182
  • Joined:  11/19/11
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  157
  • Reputation:   2
  • Joined:  01/06/12
  • Last Seen:  

I've followed the instructions but still the same result

   case MO_BODYRELOCATION:

	if (unit_movepos(src, x, y, 1, 1)) {

		clif_skill_poseffect(src,skillid,skilllv,src->x,src->y,tick);
#if PACKETVER >= 20111122
	    clif_slide(src, src->x, src->y); //Poseffect is the one that makes the char snap on the client...
#endif
		if (sd) skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000);

whether it should be changed as above?

Edited by Yasunari Ishibashi
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  2244
  • Reputation:   182
  • Joined:  11/19/11
  • Last Seen:  

oh here

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);
}
break;

make sure to recompile afterwards

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:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  2244
  • Reputation:   182
  • Joined:  11/19/11
  • Last Seen:  

yeah temp fix

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