SA-MP Forums Archive
[Pedido] Verificar nick - 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] Verificar nick (/showthread.php?tid=404016)



Verificar nick - Gustavo Aguiar - 01.01.2013

Um player tem o nick [BALLAS]Fulano ai eu queria que uma funзгo seja chamada apenas para os players que tem o [BALLAS] no nome ex: [BALLAS]Fulano,[BALLAS]Derp,[BALLAS]Maria:
ex:
pawn Код:
ifseoplayertiverballasnonick
{
// funзao
}
Jб procurei e nгo achei nada parecido


Re: Verificar nick - Dolby - 01.01.2013

Strfind
pawn Код:
new Nome[24];
GetPlayerName(playerid,Nome,24);
if(strfind(Nome,"[BALLAS]", false) != -1)
{
    //Vocк faz parte dos ballas.
}



Re: Verificar nick - Gustavo Aguiar - 01.01.2013

Quote:
Originally Posted by Gustavo_Araujo
Посмотреть сообщение
Strfind
pawn Код:
new Nome[24];
GetPlayerName(playerid,Nome,24);
if(strfind(Nome,"[BALLAS]", false) != -1)
{
    //Vocк faz parte dos ballas.
}
Vlw!