client
Move()
..()
if(usr.flying)
var/obj/A = new/obj/trail(usr.loc)
walk_to(A,usr,1)
Problem description:
The probelm is the obj/trail is in my location instead of behind me. becasue it suppose to stay behind me casue i put walk_to.
Why is that happening, can some help please.
order problems. You're making the client step before it places the trail obj... also there's a pretty big problem with your piece of code... If "usr" is moving a lot, you could get some lag problems unless you make the trail obj's delete themselves.