Thursday, May 23, 2019

Custom Shorcut For Steam Game

If you want to make custom shorcut for Steam Game, follow these steps :
1. Make new text document and write these codes :

@echo off
start "" "D:\Manual Games\Steam\Steam.exe" -applaunch 570 -noverifyfiles
exit

Note :
"D:\Manual Games\Steam\Steam.exe" is where your steam installed or located.
"570" is Steam app ID. You can search the ID here.

2. Save the file as batch file, for example : "dota2launcher.bat"

Some famous Steam Games ID :
Dota 2  = 570
CS GO = 730
PUBG = 578080
Freestyle = 339610
Paladins = 444090
Rainbow Six Siege = 359550

Lost Connection to Steam
If you experience lost connection to Steam when playing Dota 2, here's the solution :
- Right Click on Dota 2, then select properties.
- Then set launch options, then type in "-clientport 27015".
- Or you can make new custom shorcut like above example and add -clientport parameter to the shorcut :

@echo off
start "" "D:\Manual Games\Steam\Steam.exe" -applaunch 570 -clientport 27015 -noverifyfiles
exit

No comments:

Post a Comment