[Ajuda] Variavel
#1

Bom Fiz Isso.
pawn Код:
public OnPlayerGeoIP(playerid, ip[], cidade[], estado[], pais[], provedora[])
{
        printf(
                "\
                Jogador ID: %d\n\
                Jogador IP: %s\n\
                Cidade: %s\n\
                Estado: %s\n\
                Pais: %s\n\
                Provedora: %s\n\
                "
,
                playerid, ip, cidade,estado, pais, provedora
        );
     new string[64], AdminName;
     format(string, sizeof(string), " %s %s conectou no servidor, Estado: %s.",AdminLevelName[APlayerData[playerid][PlayerLevel]], AdminName, estado);
     SendClientMessageToAll(0x798B69FF, string);
}
Mais Ao Jogador Conectar Nгo pega o nome!
Obrigado.
Reply
#2

Basta adicionar GetPlayerName junto com oque vocк quer que represente o Nick...
Qualquer dъvida: https://sampwiki.blast.hk/wiki/GetPlayerName.
Vamos ao um Exemplo:

pawn Код:
public OnPlayerGeoIP(playerid, ip[], cidade[], estado[], pais[], provedora[])
{
        printf(
                "\
                Jogador ID: %d\n\
                Jogador IP: %s\n\
                Cidade: %s\n\
                Estado: %s\n\
                Pais: %s\n\
                Provedora: %s\n\
                "
,
                playerid, ip, cidade,estado, pais, provedora
        );
     new string[64], AdminName;
     new
          nick[ 24 ]
     ;
     GetPlayerName( nick, 20 ); //Representaзгo do Name й "  Nick  " junto com o nъmero de caracters
     format(string, sizeof(string), " %s conectou no servidor, Estado: %s.", nick, AdminLevelName[APlayerData[playerid][PlayerLevel]], AdminName, estado); //Aqui, Vocк adiciona tipo na posiзгo do nome.. No comeзo.
     SendClientMessageToAll(0x798B69FF, string);
}
Oque vocк adicionou ThuuG?

Embaixo de new string[64]:
pawn Код:
GetPlayerName( nick, 20 );
Embaixo de GetPlayerName, Na mensagem que enviara aos Players/Ao player:

pawn Код:
format(string, sizeof(string), " %s %s conectou no servidor, Estado: %s.",nick ,AdminLevelName[APlayerData[playerid][PlayerLevel]], AdminName, estado);
Foi adicionado nick,
Reply
#3

Vlw Coloquei diferente, mais msm assim +REP
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)