[Pedido] Nick Apenas Nome_Sobrenome
#3

Sim ele terб falhas caso o jogador tenha "_" em qualquer parte do nick, mas ele funciona...

PHP Code:
public OnPlayerConnect(playerid)
{
    new 
              
nome[MAX_PLAYER_NAME];
    
GetPlayerName(playeridnomeMAX_PLAYER_NAME);

    if(
CheckPlayerNick(nome) == 0){
        
SendClientMessage(playerid, -1"Info: Vocк foi kickado pois seu nick nгo se encontra nos padrхes do servidor.");
        
SendClientMessage(playerid, -1"Info: Nick padrгo 'Nome_Sobrenome'");
        
Kick(playerid);
    }
    return 
1;
}

CheckPlayerNick(text[]) 

    for(new 
astrlen(text); ++a
    { 
        if(
text[a] == '_') return 1;
    } 
    return 
0

Reply


Messages In This Thread
Nick Apenas Nome_Sobrenome - by SmokeKiLL - 09.03.2019, 18:24
Re: Nick Apenas Nome_Sobrenome - by Paulthaz - 09.03.2019, 18:50
Re: Nick Apenas Nome_Sobrenome - by Malandrin - 09.03.2019, 19:00

Forum Jump:


Users browsing this thread: 1 Guest(s)