Quote:
|
Originally Posted by xAndrewx
NPC Code:
function FindFile(filedir) {
if (Fileexists(filedir))
return true;
return false;
}
|
Hm, what is the point in doing that? You're essentially just doing:
function FindFile(filedir) return fileexists(filedir);