01.12.2012, 17:24
Tente isto:
pawn Код:
CMD:x9(playerid, params[])
{
static
giveplayerid,
Motivo[128]
;
giveplayerid = 0, Motivo[0] = '\0';
if(sscanf(params, "us[128]", giveplayerid, Motivo))
return SendClientMessage(playerid, RED, "Erro: /x9 [ID] [Motivo]");
if(!IsPlayerConnected(giveplayerid) || giveplayerid == playerid)
return SendClientMessage(playerid, RED, "Player nгo conectado ou й vocк mesmo.");
format(gString, sizeof(gString), "[DENUNCIA]: %s Denunciou o Jogador %s Pelo Motivo: %s", (GetPlayerName(playerid, gAdminName, 24), gAdminName), (GetPlayerName(giveplayerid, gAdminName, 24), gAdminName), Motivo);
static
Interador,
MaxPlayer
;
for(Interador = 0, MaxPlayer = GetMaxPlayers(); Interador != MaxPlayer; ++Interador){
if(Informacoes[Interador][PlayerAdmin] >= 1){
SendClientMessage(Interador, RED, gString);
}
}
return true;
}