Shio Devs Posted December 15, 2013 Share Posted December 15, 2013 (edited) So i was playing with my src folder and happened to find somethings for backslide animation. I'm not sure if this 100% safe, but its working fine no errors on my server. So i thought id share it, I do not recommend this if you don't know what your doing. Please make a backup as this may be different for you. In cliff.c Find the line 1997 Or if it's different for your svn, search the text below. void clif_blown(struct block_list *bl) //FIXME: This needs a better behaviour than just sending 2 position fixes { clif_fixpos(bl); } void clif_blown_slide(struct block_list *bl) { clif_slide(bl, bl->x, bl->y); void clif_fixpos(struct block_list *bl) Replace with: void clif_blown(struct block_list *bl) { // clif_fixpos(bl); clif_slide(bl, bl->x, bl->y); } void clif_fixpos(struct block_list *bl) Save, Recompile and test it out! please report any errors, leave some feedback... Edited December 15, 2013 by Shio Devs 2 Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted December 17, 2013 Share Posted December 17, 2013 What different before to do this scr? Quote Link to comment Share on other sites More sharing options...
Shio Devs Posted December 20, 2013 Author Share Posted December 20, 2013 What different before to do this scr? What exactly are you asking? Could you provide a more clear question please, Quote Link to comment Share on other sites More sharing options...
simplexjay2 Posted September 25, 2014 Share Posted September 25, 2014 It's Working in Latest Svn 17704 Quote Link to comment Share on other sites More sharing options...
redclub00 Posted December 14, 2016 Share Posted December 14, 2016 On 12/15/2013 at 10:00 PM, Shio Devs said: So i was playing with my src folder and happened to find somethings for backslide animation. I'm not sure if this 100% safe, but its working fine no errors on my server. So i thought id share it, I do not recommend this if you don't know what your doing. Please make a backup as this may be different for you. In cliff.c Find the line 1997 Or if it's different for your svn, search the text below. void clif_blown(struct block_list *bl) //FIXME: This needs a better behaviour than just sending 2 position fixes { clif_fixpos(bl); } void clif_blown_slide(struct block_list *bl) { clif_slide(bl, bl->x, bl->y); void clif_fixpos(struct block_list *bl) Replace with: void clif_blown(struct block_list *bl) { // clif_fixpos(bl); clif_slide(bl, bl->x, bl->y); } void clif_fixpos(struct block_list *bl) Save, Recompile and test it out! please report any errors, leave some feedback... tnx for this. its working Quote Link to comment Share on other sites More sharing options...