Jump to content

Protecție necesară RCON


Recommended Posts

Vrei să dormi noaptea sigur că nu te trezești cu tot serverul banat? Atunci introdu acest cod scurt in gamemode care atunci când cineva incearcă să se logheze rcon in joc, primește kick indiferent de persoană.

 

De ce e necesar acest lucru ? Deoarece in ziua de azi sunt multe cazuri in care cineva reușește să intre cu rcon pe server și să facă ravagii.

Dacă vrei să meargă insă rcon la administrație poți pune asta sub GetPlayerIP

 

 
if(PlayerInfo[pAdmin] > 0) continue; // Astfel administratori vor putea sa se conecteze.

 

 
public OnRconLoginAttempt(ip[], password[], success)
{
    new playerip[16];
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        GetPlayerIp(i, playerip, sizeof(playerip));
        if(!strcmp(ip, playerip, true))
        {
            Kick(i);
        }
    }
    return 1;
}

 
Edited by S.Valentin (Hurdock)
Link to comment
Share on other sites

6 hours ago, Tibixux said:

Mulțumim, acum ma pun la /sleep liniștit, si stiu ca are shad0w grija de orange.

 

CP, Știam meu că tu ești ăla care nu poate dormi noaptea de frică, of of sărăcuțu Tibi.

Edited by S.Valentin (Hurdock)
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.