Issue information

Issue ID
#6436
Status
New
Severity
None
Started
Hercules Elf Bot
Aug 9, 2012 4:26
Last Post
mkbu95
Jan 19, 2013 21:05
Confirmation
Yes (0)
No (3)

Hercules Elf Bot - Aug 9, 2012 4:26

Originally posted by [b]GM Takumirai[/b]
I read in the post of emong
http://rathena.org/board/tracker/issue-6380-body-relocation-fixed-2011-clients-upto-2012/

and the fixed was made in revision 16541
http://trac.rathena.org/changeset/16541/rathena

- but still i use 2012 client and the body relocation still bug and no animation and can't move in other area..
- i use the latest revision r16611.


here is my code inside skill.c

[codebox]
case MO_BODYRELOCATION:
if (unit_movepos(src, x, y, 1, 1)) {
#if PACKETVER >= 20111005
clif_snap(src, src->x, src->y);
#else
clif_skill_poseffect(src,skillid,skilllv,src->x,src->y,tick);
#endif
if (sd)
skill_blockpc_start (sd, MO_EXTREMITYFIST, 2000);
}
break;
[/codebox]

This post has been edited by GM Takumirai on Aug 9, 2012 4:34

Hercules Elf Bot - Aug 9, 2012 5:33

Originally posted by [b]EvilPuncker[/b]
here is working nicely

Hercules Elf Bot - Aug 9, 2012 5:36

Originally posted by [b]exneval[/b]
it's working

Hercules Elf Bot - Aug 9, 2012 6:27

Originally posted by [b]emong[/b]
Working just fine..

Hercules Elf Bot - Aug 9, 2012 14:58

Originally posted by [b]GM Takumirai[/b]
- hmm let me try it again..

Hercules Elf Bot - Aug 16, 2012 11:14

Originally posted by [b]Jhosef[/b]
same problem i am using 2011 03 15 client

Hercules Elf Bot - Aug 16, 2012 13:17

Originally posted by [b]GM Takumirai[/b]
Confirmed i used client same as jhosef and not working on it

Hercules Elf Bot - Aug 16, 2012 13:55

Originally posted by [b]emong[/b]
http://rathena.org/board/tracker/issue-6479-body-relocation-bug/ -- read this :) its because of the declaration of PACKETVER ..

just change it to #if PACKETVER >= 20110315

Hercules Elf Bot - Aug 17, 2012 2:48

Originally posted by [b]GM Takumirai[/b]
i see need to manual edit this if you are using client 2011 - 03 - 15 or lower
#if PACKETVER >= 20110315

Hercules Elf Bot - Oct 30, 2012 13:09

Originally posted by [b]dize11[/b]
I'm having trouble when i compiling this part of the script


[color=#000000] clif_snap[/color][color=#666600]([/color][color=#000000]src[/color][color=#666600],[/color][color=#000000] src[/color][color=#666600]->[/color][color=#000000]x[/color][color=#666600],[/color][color=#000000] src[/color][color=#666600]->[/color][color=#000000]y[/color][color=#666600]);[/color]