Metro: Last Light Complete Edition

Metro: Last Light Complete Edition

View Stats:
john9871234 Jan 18, 2014 @ 2:30pm
how to go back a save
somehow the game has saved just before I die and can't stop the death, when the save reloads again I will die just as before is there any way to fix this?????
< >
Showing 1-10 of 10 comments
EvilKlown Jan 18, 2014 @ 3:24pm 
Find where your saves are stored (Usually C:\Users\yourusername\Documents\4A Games\Metro LL\110000103114d77 ... Keep in mind the last folder there might be named differently on your system, but will definately be numbers and letters like that.)

Rename your auto_save file to something like "auto_save_1" or just remove it from that folder and save it somewhere else. It will then load you at whatever previous check point you crossed before that auto save. (Same thing applies to Metro 2033.)
Henry Ravenswood Jan 18, 2014 @ 6:39pm 
Way too complicated that solution above. Just go to the main menu, choose chapters and select the latest one. You will have to redo a little bit but not too much. And you won't lose any progress you've made before the chapeter you choose.
john9871234 Jan 20, 2014 @ 12:09am 
Thanks TheReal that worked
Trolltastrophe Oct 26, 2018 @ 10:31am 
dosent show me the chapters area and i dont care if this is done in 2014
NOCTURNE Oct 28, 2018 @ 1:59am 
Originally posted by spookymemes:
dosent show me the chapters area and i dont care if this is done in 2014

You seriously lost in the game menu? Well... try again... and open your eyes...
Last edited by NOCTURNE; Oct 28, 2018 @ 2:02am
DudeManDeuce Jun 10, 2019 @ 5:12pm 
Thank you EvilKlown, this helped. In my case I was playing through a long DLC which only allows autosaves. When the autosave loaded I was stuck in the water. I had to go to the directory you mentioned, delete auto_save, then rename the most recently modified file auto_save.
So l10_swamp_02.player became auto_save, that took me back an autosave. Otherwise I would have had to play through a couple of hours to get back where I was.
vss Jun 30, 2019 @ 10:20am 
DudeManDeuce - which DLC was that?
DudeManDeuce Nov 3, 2019 @ 7:25pm 
Originally posted by в♥♥00:
DudeManDeuce - which DLC was that?
I can't remember which, maybe the one where have to collect all the items. I was going for an achievement. I imagine the same method would work on other stages.
Oscar Mar 16, 2020 @ 3:52pm 
I found a much easier solution. I know this is old thread, but this post is the first result when I search for the problem, I will post it here.
If you have windows 10 and use OneDrive to sync your "Documents" folder, then just find the save as #1 suggested, and right click on the file, choose "View version history", and choose an older version and restore. Done.
edison23 Jun 6, 2022 @ 11:57pm 
I know this is an old thread #2 reply :)
The suggestion with OneDrive is sensible, I have one for those without OneDrive or similar SW.
TL;DR: set up a script that watches the `2033_auto_save` file and when it changes, the script makes a copy.

I'm gaming on Linux so my life is a bit easier in this regard but I'm sure there are options also for Win and MacOS.

My script:
#!/bin/bash WATCHEDFILE=2033_auto_save while inotifywait $WATCHEDFILE -e modify; do cp $WATCHEDFILE autosave-bcp/${WATCHEDFILE}_-_bcp_`date +%F_%kh-%Mm-%Ss` done
`autosave-bcp` is the subdirectory I keep the backups in
`inotifywait` is a part of inotify-tools[github.com]
The code produces files named like 2033_auto_save_-_bcp_2022-06-06_21h-30m-18s (that's the `date` command setting, up to you)

I had a quick glance on the inotify alternatives for other OSs and unfortunately, it seems pretty complex but at the same time, there sure seem to be ways about it: https://stackoverflow.com/questions/3517460/is-there-anything-like-inotify-on-windows

Note: The issue with copying e.g. l10_swamp_02.player to the auto_save file (as suggested above) is that the saves are a lot more often than the lXX files suggest. And the only way to get them is to watch the `2033_auto_save` file.
Last edited by edison23; Jun 6, 2022 @ 11:59pm
< >
Showing 1-10 of 10 comments
Per page: 1530 50

Date Posted: Jan 18, 2014 @ 2:30pm
Posts: 10