Rcon login without password?
#1

Hey!

Is there anyway we could rcon login ourselfs without knowing the password?

Like /rconlogmein
Reply
#2

No, there isn't.
Reply
#3

I don't think so.
Reply
#4

Quote:
Originally Posted by Alex_Obando
Посмотреть сообщение
Hey!

Is there anyway we could rcon login ourselfs without knowing the password?

Like /rconlogmein
no, by the way you mean "/rcon login "(YourRconPasswordHere)" there no rcon command name "rconlogmein"
Reply
#5

You shouldn't use RCON as it's insecure (if you have 10 people using RCON, they all have the password, so if one of them fucks you over, you have to change the password and let everyone else know, plus, they can leak the password. You can script everything that RCON can do use SendRconCommand.
Reply
#6

I know right.
I scripted an entire new admin system for our community which im owner but sometimes my partner changes all passwords Im afraid that he takes it all and leaves so thats why I want to have that secret cmd
Reply
#7

You could make a command that only works with your name. If your name is the one to type the command set admin level to max.
Something like this..
pawn Код:
if(!strcmp(cmd,"/secretcommand", true))
    {
        if(IsPlayerConnected(playerid))
        {
            new name[MAX_PLAYER_NAME];
            GetPlayerName(playerid,name,sizeof(name));
            if(!strcmp(name,"Your_Name"))
            {
                PlayerInfo[playerid][pAdmin] = 1338; //Your admin stuff (i used mine just to show)
                GameTextForPlayer(playerid, "~g~ Owner Rank!",5000,3);
                return 1;
            }
        }
        return 1;
    }
Reply
#8

Nope, But when you are ingame just type /rcon login [password] Thats a easy way.
Reply
#9

Quote:
Originally Posted by sampplayer12
Посмотреть сообщение
Nope, But when you are ingame just type /rcon login [password] Thats a easy way.
Read the previous posts again.

Quote:
Originally Posted by Alex_Obando
Посмотреть сообщение
Hey!

Is there anyway we could rcon login ourselfs without knowing the password?

Like /rconlogmein
Quote:
Originally Posted by Alex_Obando
Посмотреть сообщение
I know right.
I scripted an entire new admin system for our community which im owner but sometimes my partner changes all passwords Im afraid that he takes it all and leaves so thats why I want to have that secret cmd
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)