Gordian Quest

Gordian Quest

Not enough ratings
MANUAL SAVE and AUTO-SAVE scripts
By A T ✴️ M I C
Fumble : your weapon is now -6% strength.
Would you like to go back in time ?


Here are MANUAL SAVE and AUTO-SAVE scripts i wrote.

DISCLAIMER: This is not on 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, or if you just want the perfect gamble, rebuild a character safefully etc 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)
   
Award
Favorite
Favorited
Unfavorite
MANUAL SAVE
You can do a quick save before doing something (like upgrading a weapon, rebuild a character, gamble, etc.).

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 this script file (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
Run this script when you start the game to make an auto-save every 2min30.
(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" When you wanna go back to a savestate: - 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_path $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 }