Anti command spam HELP REP +
#1

how to add here anti command spam?

Код:
	if(AntiSpam == 1 && pInfo[playerid][Muted] == 0)
	{
           GetPVarString(playerid, "ChatMsg",CTMSG,128);
           if(!strcmp(CTMSG, text,  false))
           {
              pInfo[playerid][SpamWarns]++;
              if(pInfo[playerid][SpamWarns] < MAX_SPAM_WARNS)SendClientMessage(playerid,red,"WARNING: Do not repeat or you will be muted!");
              if(pInfo[playerid][SpamWarns] >= MAX_SPAM_WARNS)
              {
		          format(Jstring,sizeof(Jstring),"%s(%d) has been automatically muted for %d seconds | REASON: \"Spam\"",GetName(playerid),playerid,AUTO_MUTE_TIME);
				  SendClientMessageToAll(red, Jstring);
				  pInfo[playerid][Muted] = 1;
				  SetTimerEx("UnmutePlayer",AUTO_MUTE_TIME*1000,false,"d",playerid);
				  return 0;
			  }
		   }
		   else pInfo[playerid][SpamWarns] = 0;
		   SetPVarString(playerid,"ChatMsg",text);
	}
Reply


Messages In This Thread
Anti command spam HELP REP + - by Mijata - 13.03.2015, 13:37
Re: Anti command spam HELP REP + - by Mijata - 13.03.2015, 14:39
Re: Anti command spam HELP REP + - by JaKe Elite - 13.03.2015, 14:46
Re: Anti command spam HELP REP + - by Mijata - 13.03.2015, 14:56
Re: Anti command spam HELP REP + - by HydraHumza - 13.03.2015, 15:32

Forum Jump:


Users browsing this thread: 1 Guest(s)