var/impulsing=0
mob/verb
Impulse(mob/M)
if(istype(M,/mob)) //Make sure it's a mob
impulsing=1
step(M,M.dir)
..()
Problem description:
So...I want to make a verb that when you press it, you continually travel in one direction. I know what I did there was wrong, but yeah. That's what I have.
Something like that?