23.03.2014, 18:02
You can prevent them through the scripts.
An example:
An example:
pawn Код:
new
File: fhandle = fopen(...);
if (fhandle) // Valid file handle
{
// code.. you can read from/write to the file
fclose(fhandle);
}