27.05.2009, 13:08
first we would be needing to see your script as far as you made it, if you didn't make anything at all, start scripting and make the CORE, than come back post the script and maybe we can help.
as for report:
as for report:
pawn Код:
new string[128];
if(!strcmp(cmdtext, "/report", true))
{
if(cmdtext[8] == 0)
{
SendClientMessage(playerid, GRAY, "Fill something in.");
}
new playername[26];
GetPlayerName(playerid, playername, 26);
format(string, sizeof(string),"%s reported: %s", playername, cmdtext[8]);
for(new i=0;i<MAX_PLAYERS;i++)
{
if(PlayerInfo[i][Admin] > 0) {
SendClientMessage(i, RED ,string);
}
return 1;
}