ID:266428
 
new/mob/NPC(usr.x+1,usr.y,usr.z) IT WONT APPEAR :(
new/mob/NPC(locate(x,y,z)) Should do it.
In response to Nadrew
after that how can i make it so it deltes the mob i just made
In response to Strange Kidd
Learn how to use a for() loop and/or make the type a var and del(var) for it.
In response to Nadrew
Nadrew wrote:
Learn how to use a for() loop and/or make the type a var and del(var) for it.

Or you can reference it.
var/mob/monster/M = new(src.x,src.y + 1,src.z)
sleep(100)
del(M)
In response to Vortezz
That's what I was trying to say with that whole var thing.