SA-MP Forums Archive
[Ajuda] Como tiro a Anti-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: [Ajuda] Como tiro a Anti-Tag ? (/showthread.php?tid=521096)



Como tiro a Anti-Tag ? - Nenzittow - 21.06.2014

#Removido


Re: Como tiro os nicks predefinidos ? - CloneZPlays - 21.06.2014

Talvez no seu GM tenha Anti-Tag.


Re: Como tiro os nicks predefinidos ? - Nenzittow - 21.06.2014

Como tiro isso ?


Re: Como tiro os nicks predefinidos ? - MultiKill - 21.06.2014

Se eu nгo me engano vocк terб que usar strfind.
Um exemplo:
pawn Код:
if(strfind("[SAMP]SirRafa", "[SAMP]", true) != -1)
{
    SendClientMessage(playerid,-1, "[SAMP]SirRafa contйm [SAMP]");
}



Re: Como tiro a Anti-Tag ? - Nenzittow - 21.06.2014

Onde coloco? De certeza que й isso? '-'


Re: Como tiro a Anti-Tag ? - MultiKill - 21.06.2014

Coloque em OnPlayerConnect.
E tente entrar com o nick contendo [SAMP].
Entre com o nick [SAMP]SirRifa, ou troque pela variбvel que armazena o nome do jogador depois de pegar atravйs do GetPlayerName.


Re: Como tiro a Anti-Tag ? - Alwe - 21.06.2014

@Edit
pawn Код:
public OnPlayerConnect(playerid)
{
if(strfind(PlayerName(playerid), "[SAMP]", true) != -1)
{
SendClientMessage(playerid, Vermelho, "Vocк foi kickado. Motivo: Uso de nick indevido.");
ShowPlayerDialog(playerid, 500, DIALOG_STYLE_MSGBOX,"[SAMP]", "Voce foi Kickado por usar TAG de outro server", "Fechar", "");
Kick(playerid);
}



Re: Como tiro a Anti-Tag ? - Nenzittow - 21.06.2014

Isso ae й colocar Anti-Tag ? '-'
Eu quero tirar, e nгo colocar ...


Re: Como tiro a Anti-Tag ? - MultiKill - 21.06.2014

Quote:
Originally Posted by Alwe
Посмотреть сообщение
pawn Код:
public OnPlayerConnect(playerid)
{
if(strfind(PlayerName(playerid), "[SAMP]", false) != -1)
{
SendClientMessage(playerid, Vermelho, "Vocк foi kickado. Motivo: Uso de nick indevido.");
ShowPlayerDialog(playerid, 500, DIALOG_STYLE_MSGBOX,"[SAMP]", "Voce foi Kickado por usar TAG de outro server", "Fechar", "");
Kick(playerid);
}
Nгo seria true?
Й true, caso o player entrar e nгo estiver com a tag o server vai chuta-lo.


Re: Como tiro a Anti-Tag ? - Alwe - 21.06.2014

Quote:
Originally Posted by MultiKill
Посмотреть сообщение
Nгo seria true?
Й true, caso o player entrar e nгo estiver com a tag o server vai chuta-lo.
Isso, obrigado por lembrar !! E desculpa pelo erro. Jб serб Editado !