08.07.2011, 18:23
pawn Код:
COMMAND:report(playerid,params[]) {
new name1[30], name2[30], id, text[128], reason[50];
if(sscanf(params,"us",id,reason)) return SendClientMessage(playerid,red,"USAGE: /report [id] [reason]");
if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid,red,"Invalid ID");
SendClientMessage(playerid,Green,"Your report has been sent to online admins.");
GetPlayerName(playerid,name1,sizeof(name1));
GetPlayerName(id,name2,sizeof(name2));
new Hour,Minute,Second;
gettime(Hour,Minute,Second);
format(text,sizeof(text),"|| %d:%d:%d || [Report] | \"%s\" [%i] has reported \"%s\" [%i], reason: %s.",Hour,Minute,Second,name1,playerid,name2,id,reason);
for(new i = 0; i < MAX_PLAYERS; ++i) {
if(IsPlayerConnected(i) && !IsPlayerNPC(i) && IsPlayerAdmin(i)) SendClientMessage(i,COLOR_WHITE,text);
}
ReportLog(text);
return 1;
}