18.10.2012, 12:06
Try this
pawn Код:
new File:cmdlog;
public OnRconCommand(playerid,cmd[])
{
new str[128];
new Lname[24];
GetPlayerName(playerid,Lname,24);
format(str, sizeof(str),"%s has used the command %s", cmd[])
cmdlog = fopen("L_CMDLogs.txt", io_append);
fwrite(cmdlog, str);
fclose(cmdlog);
return 0;
}