Thread: Checking Files
View Single Post
  #7  
Old 06-19-2007, 11:05 PM
godofwarares godofwarares is offline
Webmaster
godofwarares's Avatar
Join Date: Dec 2006
Location: Florida
Posts: 552
godofwarares is on a distinguished road
Send a message via ICQ to godofwarares Send a message via AIM to godofwarares Send a message via MSN to godofwarares Send a message via Yahoo to godofwarares
Quote:
Originally Posted by Crow View Post
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;
  }

__________________
What signature? I see no signature?
Reply With Quote