ID:171614
 
I need someone to please tell me how to make it so that when a mob uses a certain verb, turfs appear in a cross around him. By cross in mean a thing 1 space in front of him, another 2 spaces in front of him, 1 to the left, 2 to the left, and so on and so forth
mob/verb/Cross()
new/turf/cross(locate(usr.x+1,usr.y,usr.z))
new/turf/cross(locate(usr.x+2,usr.y,usr.z))
new/turf/cross(locate(usr.x,usr.y+1,usr.z))
new/turf/cross(locate(usr.x,usr.y+2,usr.z))
new/turf/cross(locate(usr.x,usr.y-1,usr.z))
new/turf/cross(locate(usr.x,usr.y-2,usr.z))
new/turf/cross(locate(usr.x-1,usr.y,usr.z))
new/turf/cross(locate(usr.x-2,usr.y,usr.z))

If you want them to go away use somethin like this.
turf
cross
icon = 'Cross.dmi'
New()
spawn(25) del src