SA-MP Forums Archive
[Ajuda] LOGIN RCON DA DC - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] LOGIN RCON DA DC (/showthread.php?tid=472109)



LOGIN RCON DA DC - konanstreet - 26.10.2013

Quando Logo Na RCON ingame da Disconect em Mim
Como Resolvo?



Re: LOGIN RCON DA DC - bruxo00 - 26.10.2013

Posta o seu OnRconLoginAttempt.


Re: LOGIN RCON DA DC - konanstreet - 26.10.2013

public OnRconLoginAttempt(ip[], password[], success)
{
if(success)
{
new pip[16];
for(new i=0; i<MAX_PLAYERS; i++)
{
GetPlayerIp(i, pip, sizeof(pip));
if(!strcmp(ip, pip, true))
{
ClearChatbox(i, 100);
SendClientMessage(i, COLOR_YELLOW, "Colййййййй, quer ser admin? vai procurar outro servidor para jogar entao!");
SendClientMessage(i, COLOR_YELLOW, "A culpa nгo eh minha seu invejoso '.'");
SendClientMessage(i, COLOR_YELLOW, "Sua Inveja e o meu Futuro e minha FAMA ... !!!");
getdate(year, month, day);
gettime(hour,minute);
format(gstring, 128, "%s foi banido por ser Admin Rcon [%d/%d/%d - %d:%d]",PlayerName(i),day, month, year,hour, minute);
fdplog(gstring);
SBan(i, "Admin Rcon", "AuTo_BooT");
break;
}
}
}
return 1;
}



Re: LOGIN RCON DA DC - bruxo00 - 26.10.2013

Hmm... parece que isso estб a banir quem acerta na RCON...

Tente assim:

pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
    if(!success)
    {
        new pip[16];
        for(new i=0; i<MAX_PLAYERS; i++)
        {
            GetPlayerIp(i, pip, sizeof(pip));
            if(!strcmp(ip, pip, true))
            {
                ClearChatbox(i, 100);
                SendClientMessage(i, COLOR_YELLOW, "Colййййййй, quer ser admin? vai procurar outro servidor para jogar entao!");
                SendClientMessage(i, COLOR_YELLOW, "A culpa nгo eh minha seu invejoso '.'");
                SendClientMessage(i, COLOR_YELLOW, "Sua Inveja e o meu Futuro e minha FAMA ... !!!");
                getdate(year, month, day);
                gettime(hour,minute);
                format(gstring, 128, "%s foi banido por ser Admin Rcon [%d/%d/%d - %d:%d]",PlayerName(i),day, month, year,hour, minute);
                fdplog(gstring);
                SBan(i, "Admin Rcon", "AuTo_BooT");
                break;
            }
        }
    }
    return 1;
}
PS: prуxima vez use [pawn][*/pawn]


Re: LOGIN RCON DA DC - BielCOP - 26.10.2013

Vб no seu gamemode e procure por OnRconLoginAttempt.

Ao achar, delete esta public toda.