How do I input a password while connecting in console?
-
I have a server which does work and the only way for ME to connect to it is using the console command connect localhost:4977 (I use the port 4977 and it works for me). But I also want my server to have a password and when I connect to it, it says that it was an incorrect password. Is there a way to add the password to connect localhost:4977 and allow me to join?
-
HoodShine you simply enter
password mypassword
into the console before connecting, or you chain the commands like this:
password mypassword; connect localhost:4977
-
appreicated bro