It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Hey everyone, as you might know NEO Scavenger has a rather peculiar way of saving its savegames and unfortunately it turned out that my browser wipes all savegame and setting files when I close it. I had tried out Banjo's NEOScavenger Save Manager, however it didn't quite work for me. His save manager is a batch file, but instead of trying to fix it for my needs I got inspired and decided to write my own savegame managing batch file.

So if you also have issues with vanishing savegames, NEOsave might be an alternative solution for you to back them up quickly! :)

I have tested it with Windows 7 and 10.

What NEOsave does:

* It automatically sets itself up the first time you start the batch file. It will create the folder "NEOsave" in your game directory and create subfolders for your quick save and backup saves. Each folder will have an .ini file which are used to organize the save files.

* It has a quick save and quick restore function for quickly backing up your most recent save when you're done playing. The quick save will have a timestamp, which makes it easy to see how recent your last quick save is.

* Additionally it can create as many backup saves as you want and you can name them. These save backups will have timestamps too.

* It can restore your backup saves.

* It can delete backup saves you do not want to keep anymore. It does this by deleting the corresponding save# folder within the NEOsave folder and then renames the remaining savegame backup folders so their numbering in the NEOsave menu is correct again.

* It can start the game. This in and of itself does nothing, but it is a bit more convenient when you just want to backup your most recent savegame, as the batch file will still be open when you quit NEO Scavenger again and it's just the press of a button from there. However when you do this you cannot save your savegames while the game is still running. The batch file will only respond again when the game is closed. If you launch the game and the batch file separately though, you will be able to save your savegames while playing (which is handy if you want to savescum *cough*).

You can get the batch file from here:

https://pastebin.com/yX1RKghY

Simply copy and paste the batch code into a .txt file (like NEOsave.txt), save it and rename it to .bat (e.g. NEOsave.bat).

Afterwards you have to copy the batch file into your game directory where the NEOScavenger.exe file is. That's it! You're good to go.

Tip: You can very comfortably use NEOsave with the numpad: 1/2/3 = start game/quick save/quick restore, 4/5/6 = save/restore/delete savegame, and 0 is always back/exit.
Post edited June 07, 2017 by gogcoon
Thank you for creating this tool!
You're welcome! :)
Does this (or any saver) work for Mac OS? How? Thanks.
avatar
cosmicjay: Does this (or any saver) work for Mac OS? How? Thanks.
No, unfortunately not. The batch file makes use of windows specific commands and the path where NEO Scavenger stores its saves is also different in MacOS. So this batch file only works with Windows. Sorry.
Not sure if you're still using this account or site but I'm attempting to use this for the steam version because I can't figure out how Banjo's save system is supposed to work, do I need to save the batch file in a different place on the steam version? I tried saving it to This PC/OS (C:)/Program Files (x86)/Steam/Steamapps/Common/NEO Scavenger but every time I go to launch the .bat file in the games directory it crashes instantaneously.
Any help would be appreciated.
avatar
jubububutea: Not sure if you're still using this account or site but I'm attempting to use this for the steam version because I can't figure out how Banjo's save system is supposed to work, do I need to save the batch file in a different place on the steam version? I tried saving it to This PC/OS (C:)/Program Files (x86)/Steam/Steamapps/Common/NEO Scavenger but every time I go to launch the .bat file in the games directory it crashes instantaneously.
Any help would be appreciated.
I've looked into it and it seems the issue is that C:\Program Files (x86)\ and C:\Program Files are system protected folders which need admin rights to make changes to them. That is probably the reason why the batch file crashes when you try to run it. NEOsave creates and deletes files and folders to manage the savegames and it seems it can't do that in these folders.

A simple solution would be to just install Neo Scavenger in a different folder which does not need admin rights (like C:\Games\ or something like that).

But I also modified the batch file a bit:

https://pastebin.com/ALD7F0iv

You can run the batch file from any location now and it will look for the NEOScavenger.exe file in "C:\Program Files (x86)\steam". However the batch file must not be in C:\Program Files (x86)\ or any of it's subfolders. Otherwise the required admin rights will block the batch file again.

If you have the game installed somewhere else than "C:\Program Files (x86)\steam" (like "C:\Program Files (x86)\valve\steam" or something like that) you can modify the path yourselves too.

The path variable is defined in line 9 and reads:
"FOR /r "%ProgramFiles(x86)%\steam" %%a IN (*) DO IF /I "%%~nxa"=="NEOScavenger.exe" SET neoexepath=%%~dpa"

Just change "%ProgramFiles(x86)%\steam" to the correct folder path of your steam installation.

If the batch file takes too long to open you can also set the path directly to the Neo Scavenger installation folder. That way it doesn't have to search so long for the NEOScavenger.exe file.

Thanks for your feedback! I hope this fixes it.

*edit*
I did another version which cannot launch the game, but in turn also does not have to look for the NEOScavenger.exe file. Other than that it's the same.

Version without the ability to launch the game:
https://pastebin.com/A2uNWEFp

You can use it from anywhere as long as it is not somewhere in "C:\Program Files (x86)\" or "C:\Program Files".
Post edited August 22, 2020 by gogcoon