Title: Das3 backup script for AutoHotkey Author: thisisthepastebinuse Pastebin link: http://pastebin.com/DVrEL5uv First Edit: Monday 2nd of May 2016 08:08:25 PM CDT Last Edit: Monday 2nd of May 2016 08:08:25 PM CDT #SingleInstance Force #IfWinActive ahk_exe DarkSoulsIII.exe   /* 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   F1 will close the script F5 will make a backup of your dark souls 3 save file   How do I use this? Method 1. 1. Install https://autohotkey.com/ 2. Save this paste as "name.ahk". The name of the file is not important, but the .ahk extension is 3. Change [NAME!] for your user name and [ID!!!] for your ID in the script below 4. Double click the ahk file 5. Run the game and press F5 in order to backup your save file   How do I use this? Method 2. 1. Install https://autohotkey.com/ 2. Save this paste as "name.ahk". The name of the file is not important, but the .ahk extension is 3. Do this: http://puu.sh/oEgJ1/fcd74511ce.mp4 */     F1::ExitApp   F5::     FileCopy, C:\Users\admin\AppData\Roaming\DarkSoulsIII\0110000100000666\DS30000.sl2, C:\Users\admin\AppData\Roaming\DarkSoulsIII\0110000100000666\DS30000%A_Space%%A_YYYY%.%A_MM%.%A_DD%%A_Space%%A_Hour%.%A_Min%.%A_Sec%.sl2 return