Quote:
Originally Posted by Aooka
Code:
new ConfigsDir[ 64 ]
You've explained the 64 .. But i do not understand ... So ... Please 
|
It's just a string length, you can use whatever you want.
The real length for "addons/amxmodx/configs/vip.ini" is 30 characters, so the size can be 31.
However, since the configs directory is customizable, developers like myself use 64 for path sizes since that is a comfortable maximum for path lengths.
Quote:
Originally Posted by Aooka
Here :
Code:
while( !feof( FileHandle ) )
|
feof() returns whether or not the current file handle has reached the end of the file.
This line continues looping until the end of the file has been reached.
"While we have not reached the end of the file..."
Quote:
Originally Posted by Aooka
And to conclude here :
Code:
fgets( FileHandle , line, charsmax( line ) );
|
Gets the current line that the file handle is pointing to.
__________________