SA-MP Forums Archive
[Ajuda]Anti-Flood - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda]Anti-Flood (/showthread.php?tid=317735)



[Ajuda]Anti-Flood - Victor_Souz4 - 12.02.2012

Bom galera procurei no search em busca de um anti-flood assim; Ex: Digitei " Hahaah" se eu digita o mesmo texto novamente retorna uma menssagem q naum pode rrepetir o texto. alguem pode ajudar a faser isso


Re: [Ajuda]Anti-Flood - 4LiSs0N - 12.02.2012

https://sampforum.blast.hk/showthread.php?tid=255865


Re: [Ajuda]Anti-Flood - arakuta - 12.02.2012

Amigo, pelo que percebi vocк nгo estб tentando fazer nada, e sim buscando coisas prontas.

Aprenda sobre OnPlayerText

https://sampwiki.blast.hk/wiki/OnPlayerText


Re: [Ajuda]Anti-Flood - Cotoco Topic - 12.02.2012

pawn Код:
static szPlayerChatMsg[MAX_PLAYERS][128];

if(strlen(text) == strlen(szPlayerChatMsg[playerid]) && !strcmp(szPlayerChatMsg[playerid], text,  false))
{
SendClientMessage(playerid, 0xFFFF00AA, "[x] - Nгo repita esta mensagen.");
format(szPlayerChatMsg[playerid], 128, "%s", text);
return 0;
}