ID:176278
 
How would i make it so when something is created the game looks for a certain mob then locates the new mob there? Thanks in advance!
-Crio
var/mob/table/T = new(usr.loc)
this is wut i got so far...
In response to Koolguy900095
mob/verb/Create()
for(var/mob/M in world)
new/obj/table(M.loc)
return


RaeKwon