/proc/fexists(File)
Arguments:
File: The name of the file to check.
Returns:
num: 1 if the file exists; 0 if it does not.

Determines if the file exists in the file system. Unlike fdel(), this exclusively operates on files - it cannot determine if a directory exists.

if(!fexists("code.dme"))
    world.log << "How did we get here?"