small help
#7

@ luicy i've tried that, i have problem with my function help me with that...
Код:
antiswear(text[])
{
   {
     new chatswear,len;
     for(new cs = 0; cs < MAX_WORDS; cs++)
     {
         //check if the word is offensive
         chatswear = strfind(text, swear[cs], true);
         if(chatswear > -1)
         {
             len = strlen(swear[cs]);
             if(len < 3) break;
             for(new y = 1; y < len; y++)
             {
                text[y] = '*'; //chatswear+y
		     }
         }
     }
   }
return 0;
}
after luicy's suggestion

Код:
if(text[0] == '@')
    {
		
         new string[128];
		 format(string, sizeof(string), "BF_CHAT %s [%d]: %s", PlayerName(playerid),playerid,antiswear(text[1]));
	     SendClientMessage(playerid,0xFF8C00FF,string);
		
    }
Reply


Messages In This Thread
small help - by DetoNater - 21.01.2017, 06:49
Re: small help - by czop1223 - 21.01.2017, 07:01
Re: small help - by DetoNater - 21.01.2017, 07:42
Re: small help - by BiosMarcel - 21.01.2017, 07:45
Re: small help - by DetoNater - 21.01.2017, 08:59
Re: small help - by Luicy. - 21.01.2017, 09:04
Re: small help - by DetoNater - 21.01.2017, 09:14
Re: small help - by DetoNater - 21.01.2017, 12:57

Forum Jump:


Users browsing this thread: 2 Guest(s)