[Ajuda] Como mostrar o nome de todos online em dialog
#4

pawn Код:
CMD:players(playerid)
{
    new aStr1[30], aStr2[300];
    foreach(new i : Player)
    {
        format(aStr1, sizeof(aStr1),"%s\n", NomeJ(i));
        strcat(aStr2, aStr1);
    }
    ShowPlayerDialog(playerid, DIALOG_PLAYERS, DIALOG_STYLE_LIST,"Jogadores", aStr2, "Oi","Tchau");
    return 1;
}
NomeJ(playerid)
{
    new Nj[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Nj, sizeof(Nj));
    return Nj;
}

Lucas, poderia ter editado nй? String com valor de 256 sу para formatar um nome? Muita coisa...
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)