I want to run steam game with launch parameters. How would i do this? Is there any library for it?
i tried to use
Subprocess.popen(f'Game/path/game.exe {Params}')
and etc, but got nothing or just regular game launch. But with steam client tools it works fine.
4
You can use something like this:
subprocess.Popen(['C:/Program Files (x86)/Steam/steam.exe', '-applaunch', '1422450', '-console', '-novid'])
this command starts Deadlock with the developer console and without intro in my setup.
You must change the path with your steam.exe and update the 1422450 part with the game’s AppID.
3