Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. @echo off
  2.  
  3. @REM replace this with your Half-Life 2 or Source 2013 directory
  4. set "HL2Dir=C:\Program Files (x86)\Steam\steamapps\common\Half-Life 2"
  5.  
  6. if not exist "%HL2Dir%" (
  7. echo You need to set a different directory for your HL2 or Source 2013 install,
  8. echo As "%HL2Dir%" does not exist.
  9. pause
  10. exit
  11. )
  12.  
  13. mklink /J "%cd%\hl2" "%HL2Dir%\hl2"
  14. echo.
  15. mklink /J "%cd%\episodic" "%HL2Dir%\episodic"
  16. echo.
  17. mklink /J "%cd%\ep2" "%HL2Dir%\ep2"
  18. echo.
  19.  
  20. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement