Portal SAMP
[Ajuda] Como remover underline - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] Como remover underline (/showthread.php?tid=1180)



Como remover underline - Atirador - 11/05/2021

Como posso remover underline no nick dos jogadores no chat?


RE: Como remover underline - MateusCandido - 12/05/2021

(11/05/2021 22:57)Atirador Escreveu: Como posso remover underline no nick dos jogadores no chat?

Exemplo?


RE: Como remover underline - xbruno1000x - 12/05/2021

Código:
static stock GetPlayerNameEx(playerid)
{
    new xBruno1000x[128];
    GetPlayerName(playerid, xBruno1000x, 24);
    new xB[24];
    strmid(xB, xBruno1000x, 0, strlen(xBruno1000x), 24);
    for(new i = 0; i < MAX_PLAYER_NAME; ++i)
    {
        if (xB[i] == '_') xB[i] = ' ';
    }
    return xB;
}

De nada