Quote:
Originally Posted by Crow
Ok, lemme explain further :P I want to script a head changing system like on GK, something similar to "/head #". But I dont want to allow images which dont exist. How would I do that then? :/
|
Give (npcserver) read rights to your heads folder, and use this to check if it exists:
PHP Code:
function doesFileExist(file)
{
file.loadLines(file);
if (file.size() >= 0)
{
return true;
} else {
return false;
}
}