How can I create a desktop shortcut that will automatically connect to a game server on launch? I have got this as a start up command "steam://rungameid/240 -connect 193.192.58.170:27015", but it doesn't connect just start the game... Is it possible? Thanks!
Asked
Active
Viewed 1.5k times
1 Answers
6
You appear to be mixing command line options with Steam Browser protocol URLs.
The correct syntax for a Steam browser protocol link that auto-connects is:
steam://connect/193.192.58.170:27015
You'll note there's no game, as Steam is (usually) smart enough to determine what game to launch based on what game the server is running.
Alternatively, you could use a shortcut to the game's executable with the appropriate command line options, or set the command line options from the Steam Library properties for the game. In this case, you'd want to use:
+connect <ip>:<port>
as part of the arguments to the game.
agent86
- 118,734
- 85
- 395
- 576
steam://connect/<ip>:<port>/<password>. – timotree May 08 '19 at 02:26