Advertisement
thisisthepastebinuse

Das3 backup script for AutoHotkey

May 2nd, 2016
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance Force
  2. #IfWinActive ahk_exe DarkSoulsIII.exe
  3.  
  4. /*
  5. The hotkey will work only if Dark Souls 3's window is active. If the hotkey doesn't work, you need to run the ahk file as administrator
  6.  
  7. F1 will close the script
  8. F5 will make a backup of your dark souls 3 save file
  9.  
  10. How do I use this? Method 1.
  11. 1. Install https://autohotkey.com/
  12. 2. Save this paste as "name.ahk". The name of the file is not important, but the .ahk extension is
  13. 3. Change [NAME!] for your user name and [ID!!!] for your ID in the script below
  14. 4. Double click the ahk file
  15. 5. Run the game and press F5 in order to backup your save file
  16.  
  17. How do I use this? Method 2.
  18. 1. Install https://autohotkey.com/
  19. 2. Save this paste as "name.ahk". The name of the file is not important, but the .ahk extension is
  20. 3. Do this: http://puu.sh/oEgJ1/fcd74511ce.mp4
  21. */
  22.  
  23.  
  24. F1::ExitApp
  25.  
  26. F5::
  27.     FileCopy, C:\Users\[NAME!]\AppData\Roaming\DarkSoulsIII\[ID!!!]\DS30000.sl2, C:\Users\[NAME!]\AppData\Roaming\DarkSoulsIII\[ID!!!]\DS30000%A_Space%%A_YYYY%.%A_MM%.%A_DD%%A_Space%%A_Hour%.%A_Min%.%A_Sec%.sl2
  28. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement