ID:174818
 
How would I do that at an x,y,z coordinate? I've been messing around, and searched the forum, but nothing is working. Help is greatly appreciated.

.::DBHavenMaster::.
You could do it like this:
var/turf/T = locate(x,y,z) //Get access to the turf
for(var/atom/A in turf.contents) //For everything that's on top of the turf
del(A) //Delete it

That should be what you want.
In response to Jon88
Small mistake:

var/turf/T = locate(9,7,1)
for(var/atom/A in T.contents)
del(A)

Thanks,
.::DBHavenMaster::.