13.12.2014, 21:53
Tem usar isso ai
pawn Код:
format(STRX, sizeof(STRX), "O(A) jogador(a) %s foi kickado(a). Motivo: Nгo quis se registrar.", GetName(playerid));
SendClientMessageToAll(Amarelo, STRX);
KickLog(STRX);
Kick(playerid);
forward KickLog(string[]);
public KickLog(string[])
{ //O maximo de caracter ex"letras numeros e espaзos" sгo 200 OK
new entry[200];
format(entry, sizeof(entry), "%s\r\n", string);
new File:hFile;
hFile = fopen("Logs/Kicks.Kick", io_append);
fwrite(hFile, entry);
fclose(hFile);
return 1;
}