Here are MANUAL SAVE and AUTO-SAVE scripts created by I can hear you AAAUGH.
DISCLAIMER: This is not the way devs intended to play this amazing game. Bad luck is full part of the gameplay.
However, if you’re a savescum like me and wanna avoid it, this guide is for you.
For EACH script, you’ll need to:
– Copy the script
– Hit the Windows button on your keyboard, and tipe “ise” to open Windows PowerShell ISE
– Once in, on the top right corner, you’ll see an arrow next to “script”. Hit it
– Past
– Follow quick instructions (just wrote your username, save and exit)
MANUAL SAVE
First script: SAVE
<# This script is a MANUAL SAVE for GORDIAN QUEST
!!! Replace "your_name" with your computer username !!!
You can find it here:
- c:\users\YOURNAME
Queep the quotes ! " "
#>
$yourname = "your_name"
<#
Now save it and close:
- (on the top left corner) File/ save as/ "manual save"
!!! HOW TO DO A SAVE !!!
- Right click on this file
- Run with Powershell
How to go back to your save state:
- Go back to Gordian main menu
- right click on the other script (the loading one)
- "run with powershell
#>
########################################################################################
# PATHS
$save_path = "C:\Users\$yourname\AppData\LocalLow\MixedRealms\GordianQuest\Saves\Default"
$manual_save = "C:\Users\$yourname\AppData\LocalLow\MixedRealms\backup\manual_save"
# script
robocopy $save_path $manual_save
Second script: LOAD (go back to your save state)
<# This script is the MANUAL LOADING for the manual save
!!! Replace "your_name" with your computer username !!!
You can find it here:
- c:\users\YOURNAME
Queep the quotes ! " "
#>
$yourname = "your_name"
<#
Now save it and close:
- (on the top left corner) File/ save as/ "loading"
!!! HOW TO DO A SAVE !!!
- Right click on this file
- Run with Powershell
How to go back to your save state:
- Go back to Gordian main menu
- right click on the other script (the loading one)
- "run with powershell"
#>
########################################################################################
# PATHS
$save_path = "C:\Users\$yourname\AppData\LocalLow\MixedRealms\GordianQuest\Saves\Default"
$manual_save = "C:\Users\$yourname\AppData\LocalLow\MixedRealms\backup\manual_save"
# script
robocopy $manual_save $save_path
AUTO-SAVE
(and keep a 2min30/ 5min/ 7min30/ 9min save state)
<#
!!! Replace "your_name" with your computer username !!!
You can find it here:
- c:\users\YOURNAME
Queep the quotes ! " "
Now save it and close:
- (in the top left corner) File/ save as/ "loading"
#>
$yourname = "your_name"
<#
!!! HOW TO RUN THE SCRIPT !!!
When you start the game, right click on this file, "run with powershell"
If you want to apply a backup
- go back to Gordian main menu
- copy past the selected folder content files to
C:\Users\YOURNAME\AppData\LocalLow\MixedRealms\GordianQuest\Saves\Default
#>
########################################################################################
# PATHS
$save_path = "C:\Users\$yourname\AppData\LocalLow\MixedRealms\GordianQuest\Saves\Default"
$backup_path = "C:\Users\$yourname\AppData\LocalLow\MixedRealms\backup"
$backupgamestart = "$backup_path\backup_gamestart"
$backup2min30 = "$backup_path\backup2min30"
$backup5min = "$backup_path\backup5min"
$backup7min30 = "$backup_path\backup7min30"
$backup9min = "$backup_path\backup9min"
# SCRIPT
# This script will auto-save your game every 2min30 (150seconds)
robocopy $save $backupgamestart
while (1 -eq 1 )
{
robocopy $backup7min30 $backup9min
start-sleep -Seconds 2
robocopy $backup5min $backup7min30
start-sleep -Seconds 2
robocopy $backup2min30 $backup5min
start-sleep -Seconds 2
robocopy $save_path $backup2min30
start-sleep -seconds 150
}
Thanks to I can hear you AAAUGH for his excellent guide, all credit to his effort. if this guide helps you, please support and rate it via Steam Community. enjoy the game.