Advertisement
Guest User

Untitled

a guest
Apr 5th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. @echo off
  2. set bw=blank
  3.  
  4. ::renames DataPC_DX11.forge
  5. ren "C:Program Files (x86)SteamsteamappscommonAssassin's Creed 3DataPC_DX11.forge" DataPC_DX11_.forge
  6.  
  7. ::Launches AC3SP
  8. "C:Program Files (x86)SteamsteamappscommonAssassin's Creed 3AC3SP.exe"
  9.  
  10. ::Begins check for Start
  11. :start
  12. for /f "tokens=1 delims=," %%a in ('tasklist /fo csv ^| find /i "AC3SP"') do (set bw=%%a)
  13. cls
  14. if %bw%==blank (goto start)
  15.  
  16. ::Waiting for the process to actually fully launch you may have to increase the -n value if it takes your computer longer to launch the game
  17. ping 1.1.1.255 -w 1 -n 10 > NULL
  18.  
  19. ::renames back to start game once ac3sp starts
  20. ren "C:Program Files (x86)SteamsteamappscommonAssassin's Creed 3DataPC_DX11_.forge" DataPC_DX11.forge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement