ID:2408296
 
(See the best response by Nadrew.)
I am wondering if there is a way too make the mob face a certain direction while also moving in another I'm like a week into coding and right now I can only choose directions while standing still
Best response
You can pass a direction to Move() when manually calling it.

mob/verb/StepRight()
Move(get_step(src,EAST),WEST)


For example.