[Pedido] Mensagem
#1

Queria que aparecece uma mensagem quando o player logar na rcon й impossivel ou possivel oO ?
Reply
#2

https://sampwiki.blast.hk/wiki/OnRconLoginAttempt

Adapte.
Reply
#3

Estou de bom humor: (Modifique a vontade)

pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
    if(success) //Senha correta
    {
        new str[128],pname[MAX_PLAYER_NAME],id=0;
        while(id<MAX_PLAYERS)
        {
             GetPlayerIp(id,str,128);
             if(!strcmp(str,ip)) {GetPlayerName(id,pname,sizeof(pname));break;} //Pega o nome
             id++;
        }
        format(str,128," %s(ID:%d) logou na RCON!",pname,id);
        SendClientMessage(playerid,0xFFFF00AA,str);
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)