ID:178412
 
how would i make an obj randomly appear and then make it clean up all the objs then reboot?
I think it'd be something like this..
obj
something
icon = 'something.dmi'
mob
New()
startprocess//label
world<<"A Something appears!"
var/x4dood = (rand(1,100))//make x4dood be random
var/y4dood = (rand(1,100))
var/z4dood = (rand(1,5))
new/obj/something(locate(x4dood,y4dood,z4dood))
sleep(600)//sleep a minute
goto startprocess