turf/trans
icon = 'icons.dmi'
icon_state = "trans"
Enter(mob/M)
M.x+=1
------------My second attempt------------
turf/trans
icon = 'icons.dmi'
icon_state = "trans"
Enter(mob/M)
M.loc.x+=1
Im trying to make it so when the mob steps on the turf, it will send me forward onto the next trans turf, executing Enter() again. It just acts like a regular turf unless you press the arrow key for -x. Any suggestions?