31.12.2009, 09:59
Код:
dcmd_report(playerid, params[])
{
new player;
new reason;
new string[64];
new sreason = reason;
if(sscanf(params, "us", player, reason)) return SCM(playerid, WHITE, "Usage: /report [PlayerName/ID] [Reason]");
new playername[32];
GetPlayerName(player,playername,32);
if(IsPlayerConnected(player))
{
format(string,64,"%s reporting %s for: %s",PlayerName(playerid),playername,sreason);
SendAdminMessage(RED,string);
}
else SCM(playerid,GREY,"Player/ID not connected.");
return 1;
}
thx help me

