[AJUDA] Como Boto Texto em Cima da cabeзa do Player
#5

Quote:
Originally Posted by @ReeF
Посмотреть сообщение
Код:
public OnRconLoginAttempt(ip[], password[], success)
e pra #define playerid ?
pq nunca vi definir playerid
Nгo tem playerid nos parвmetros do "OnRconLoginAttempt", mas, vocк pode tentar da seguinte forma:

pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
    if(success) //Se a senha estiver correta.
    {
        new pip[16];
        for(new i=0; i<MAX_PLAYERS; i++) //Loop
        {
            GetPlayerIp(i, pip, sizeof(pip));
            if(!strcmp(ip, pip, true))
            {
                SetPlayerChatBubble(i,"Membro[LSD]", 0xF6F6F6AA, 100.0, 99999);
            }
        }
    }
    return 1;
}
Sу irб criar o ChatBubble se o jogador logar na rcon.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)