As most of you know, there is quite a difference between rAthena's asura strike and eAthena (Pre vs Re). For rAthena the character looks as if it's teleporting from one cell to another, whereas with eAthena the character walks to the cell.
I'm currently using rAthena, and I am currenty using this code in skill.c to get the walking animation in eAthena:
I replaced:
// Ashura Strike still has slide effect in GVG
if ((mbl == src || (!map_flag_gvg2(src->m) && !map[src->m].flag.battleground)) &&
unit_movepos(src, mbl->x + x, mbl->y + y, 1, 1)) {
with this
unit_walktoxy(src, mbl->x + x, mbl->y + y, 2)
I have replaced it and it's definitely working however a few problems:
1.) When the character asura strikes, feels like there is about a 0.5 second delay until the character actually starts moving to the cell. Movement should be instant when character asura.
2.) It only moves the character 1-2 cells in comparison to the video, the champion moves about 4-5 cells away.
Hey guys,
As most of you know, there is quite a difference between rAthena's asura strike and eAthena (Pre vs Re). For rAthena the character looks as if it's teleporting from one cell to another, whereas with eAthena the character walks to the cell.
As shown in the video:
https://www.youtube.com/watch?v=47-m3xC-BqA
I'm currently using rAthena, and I am currenty using this code in skill.c to get the walking animation in eAthena:
I replaced:
// Ashura Strike still has slide effect in GVG if ((mbl == src || (!map_flag_gvg2(src->m) && !map[src->m].flag.battleground)) && unit_movepos(src, mbl->x + x, mbl->y + y, 1, 1)) {with this
I have replaced it and it's definitely working however a few problems:
1.) When the character asura strikes, feels like there is about a 0.5 second delay until the character actually starts moving to the cell. Movement should be instant when character asura.
2.) It only moves the character 1-2 cells in comparison to the video, the champion moves about 4-5 cells away.
Just wondering if there's any way to fix this?
Thanks,
Link to comment
Share on other sites