0 of 0

File information

Last updated

Original upload

Created by

Lightning

Uploaded by

LightningFE

Virus scan

Some suspicious files

Tags for this mod

12 comments

  1. steveyaze
    steveyaze
    • supporter
    • 2 kudos
    I just created a batch file to backup the save directory every 10 minutes and keep the last 14 days of backups, if someones interested just put this into a backup.bat or something (obviously change source file and target directory locations in it, also create the target directory...) and keep this running while playing:

    @echo off
    setlocal enabledelayedexpansion

    rem Set directory and filename paths
    set "target_directory=h:\Backups\Dragons_Dogma_2"
    set "source_file=c:\Program Files (x86)\Steam\userdata\xxxxxxx\xxxxxxx\remote\win64_save"
    set "seconds_between_saves=601"
    set "cleanup_days=14"

    :loop
    rem Get current date and time
    set datetime=%DATE%_%TIME%

    rem Replace characters that are not suitable for directory name
    set datetime=!datetime::=-!
    set datetime=!datetime: =_!
    set datetime=!datetime:/=-!
    set datetime=!datetime:,=-!
    set datetime=!datetime:.=-!

    rem Create directory with current date and time in target directory
    mkdir "!target_directory!\!datetime!"

    rem Copy file to the newly created directory
    copy "!source_file!\*" "!target_directory!\!datetime!\"

    rem Cleanup old directories
    pushd "!target_directory!"
    for /f "skip=%cleanup_days% delims=" %%i in ('dir /b /ad-h /o-d') do (
        rd /s /q "%%i"
    )
    popd

    rem Wait for specified seconds
    echo Waiting !seconds_between_saves! seconds until next backup...
    ping -n !seconds_between_saves! localhost >nul

    rem Repeat the loop
    goto :loop
    1. ajane
      ajane
      • member
      • 13 kudos
      very clever. thank you!
    2. NooBzPoWaH
      NooBzPoWaH
      • premium
      • 40 kudos
      Freakin' awesome, so simple yet so efficient !

      You should really consider putting it as a proper Mod, it's so useful to have several saves in case you f*ck something up (quest wise & co).
      I'm sure it would help and please a lot of users and it seems much easier than all the save manager i've seen so far, since it's only appearing in this zero download Mod comments.

      Since i can't endorse it here's your second Kudos (given with great pleasure) ! <3
  2. tyker1
    tyker1
    • supporter
    • 0 kudos
    its flagged as malware lol
  3. shoe7ess2
    shoe7ess2
    • member
    • 3 kudos
     Please upload an archive including the .ahk files used so we can compile ourselves.
  4. SiN1KiLLeR
    SiN1KiLLeR
    • supporter
    • 8 kudos
    The file has been quarantined.
    1. Pyr0blad3
      Pyr0blad3
      • member
      • 6 kudos
      i also dont see why manuel saving isnt enough, like what does the tool do, no hate <3
    2. dubzzthegreat
      dubzzthegreat
      • supporter
      • 0 kudos
      Any auto save or checkpoint saves overwrite your manual saves. Essentially 1 save total, this would help if able to use in case of any mishaps.
    3. SiN1KiLLeR
      SiN1KiLLeR
      • supporter
      • 8 kudos
      Is the process for manual save the same as DD1?
    4. dubzzthegreat
      dubzzthegreat
      • supporter
      • 0 kudos
      I think so but am not 100% sure. You can manual save through menu, there are tons of auto saves and then there is the save by resting at an inn (Which i assume is like dd1 in that it refreshes/updates your pawn and online info).
    5. Pyr0blad3
      Pyr0blad3
      • member
      • 6 kudos
      cant you just copy and backup the save files and replace the current file with it when you want to? no need for such a tool, or do i miss something.
  5. maceachenm
    maceachenm
    • member
    • 0 kudos
    Could I use this to make another character? like two different character saves?  sorry if this is a dumb question I have never messed with any game save mods or backing up saves so I'm new.