08.05.2009, 19:24
This should be in Script Request however... Try this (I havnt scripted in a while so it might not work
)

pawn Code:
stock Log(const string[])
{
new File:log;
log = fopen("suggest.log",io_append);
fwrite(log, string);
fclose(log);
return 1;
}