Some script help
#6

Man,all is at wiki,or search ******,for report command,its easy,here you got:
On the top of FS
Code:
new LastReport[MAX_PLAYERS];
//OnPlayerCommandText:
Code:
if(strcmp(cmdtext, "/report", true, 7)==0)
{
  if(!strlen(cmdtext[8])) return SendClientMessage(playerid, 0xFF0000AA, "Use /report [message]");
  new str[128];
  if((gettime()-LastReport[playerid]) < 30)
  {
    format(str, 128, "You have to wait %d seconds before you can send a new report!", (30-(gettime()-LastReport[playerid])));
	SendClientMessage(playerid, 0xFF0000AA, str); return 1;
  }
  format(str, 128, "[REPORT] Sender ID: %d. Message: %s", playerid, cmdtext[8]);
  for(new i; i<MAX_PLAYERS; i++){
  if(IsPlayerConnected(i) && IsPlayerAdmin(i)){
    SendClientMessage(i, 0x00FFFFAA, str);
  }}
  SendClientMessage(playerid, 0x00FF00AA, "Report send to online admins!");
  LastReport[playerid] = gettime();
  return 1;
}
Reply


Messages In This Thread
Some script help - by Markx - 06.04.2011, 08:05
Re: Some script help - by [DJ]Boki - 06.04.2011, 08:07
Re: Some script help - by Markx - 06.04.2011, 08:08
Re: Some script help - by -Rebel Son- - 06.04.2011, 08:09
Re: Some script help - by Haydz - 06.04.2011, 08:09
Re: Some script help - by [DJ]Boki - 06.04.2011, 08:10
Re: Some script help - by Markx - 06.04.2011, 08:14
Re: Some script help - by -Rebel Son- - 06.04.2011, 08:15
Re: Some script help - by [DJ]Boki - 06.04.2011, 08:15
Re: Some script help - by gamer931215 - 06.04.2011, 08:17
Re: Some script help - by -Rebel Son- - 06.04.2011, 08:17
Re: Some script help - by [DJ]Boki - 06.04.2011, 08:17
Re: Some script help - by Markx - 06.04.2011, 08:19
Re: Some script help - by -Rebel Son- - 06.04.2011, 08:19
Re: Some script help - by Markx - 06.04.2011, 08:22
Re: Some script help - by [DJ]Boki - 06.04.2011, 08:23
Re: Some script help - by Markx - 06.04.2011, 09:03
Re: Some script help - by [DJ]Boki - 06.04.2011, 09:07
Re: Some script help - by Markx - 06.04.2011, 09:20
Re: Some script help - by [DJ]Boki - 06.04.2011, 09:29
Re: Some script help - by Markx - 06.04.2011, 10:27
Re: Some script help - by [DJ]Boki - 06.04.2011, 10:29

Forum Jump:


Users browsing this thread: 4 Guest(s)