ID:263465
 
Code:
for(var/obj/Machine/Robot/R in world)
src<<"Found in world"

for(!(var/obj/Machine/Robot/R in world)
src<<"Not in world"


Problem description:
Ok here's what the problem is, I want the first "for" to be the oppsiste. But when i tryed the second "for", it's not the oppsite.
An if statement might work better here.

if(locate(/obj/Machine/Robot) in world)
src << "Found one."
else
src << "None around."