25.07.2017, 22:04
Been a while since I've touched DINI but that isn't how it's done.
You need to format and check the file location to see if it exists. For example:
Curious, why're you checking if their file exists?
The only way to be on the server is if they're registered n their file exists, right?
You need to format and check the file location to see if it exists. For example:
PHP код:
new fileName[90];
format(fileName, sizeof(fileName), "Accounts/%s.ini", name);
if(dini_Exists(fileName))
{
continue...
}
else
{
continue...
}
The only way to be on the server is if they're registered n their file exists, right?