ID:145499
 
Code:
        for(var/turf/T in oview(usr,4))
new/turf/Black01(T)


the top part is fine. but getting rid of it is a little harder for me. so could someone tell me how to fix this bottom part?

        for(var/turf/T in oview(usr,4))
del /turf/Black01 in T.loc


Problem description:

*points to middle between code area*
Check if T's type is /turf/Black01.
if(istype(T,/turf/Black01)) del T


Or you can furthur specify what you want in for():
for(var/turf/Black01/T in oview(usr,4)) del T
In response to Mega fart cannon
thanks. do u got an aim or yim sn i would like to discuss some stuff with you
In response to Kelanel
i just tried what he sed and realized it wont work XD
In response to Kelanel
Euhm, no, you're messing up stuff. His code works like a charm.
In response to Mysame
i pasted it in right where it belongs and nothing is happening when i turn the thing off. so simply. its not working.
In response to Kelanel
then there's something wrong with your code BEFORE that. Could we see it?