12.03.2013, 21:55
Basically, it cannot find the function 'Log' anywhere.
I made that function quickly, add to the bottom of your script, please tell me if it gives any errors.
pawn Код:
stock Log(file[], info[])
{
if(fexist(file))
{
new finalContent[200];
strcat(finalContent, info);
strcat(finalContent, "\r\n");
new File:handle = fopen(file, io_append);
fwrite(handle, finalContent);
fclose(handle);
}
return 1;
}

