[Pedido] Proibir uma certa TAG. - 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: [Pedido] Proibir uma certa TAG. (
/showthread.php?tid=462423)
Proibir uma certa TAG. -
Ley - 06.09.2013
Boa noite, estou querendo proibir uma certa TAG no meu servidor, na qual qualquer player que entre com ela seja banido.
Alguйm poderia me ajudar? A Tag й ' [H4X] '.
Aguardo Respostas.
Re: Proibir uma certa TAG. -
WLSF - 07.09.2013
Verifica quando ele se conectar...
pawn Код:
public OnPlayerConnect(playerid)
{
new qpwodjs [ 24 ] ;
GetPlayerName(playerid, qpwodjs, sizeof(qpwodjs));
if (strfind(qpwodjs, "[H4X]") != -1) return //retorna oque vocк quiser aqui, pra ele nгo prosseguir no OnPlayerConnect.
return 1;
}