0 of 0

File information

Last updated

Original upload

Created by

NullDev

Uploaded by

NullPing

Virus scan

Safe to use

About this mod

This script Re-Enables the achievements on all your current saves, after you e.g. used Console commands

Permissions and credits
This is a python script that goes through all your save files and re-enables achievements for all of them.

---

Before you use:

This was the first way to re-enable achievements before we figured out basic modding. There are better alternatives now such as

https://www.nexusmods.com/oblivionremastered/mods/145
https://www.nexusmods.com/oblivionremastered/mods/125

If you don't mind using mods, use one of those. However, If you are more advanced and do not want to tamper with your game files, use this script. 

THIS CANNOT BE USED WITH VORTEX - It's a standalone script!

---

IMPORTANT:

The script won't prevent them from being disabled again. But you can always re-run it.
You can also use it in combination with https://www.nexusmods.com/oblivionremastered/mods/125 to enable achievements on your existing saves.

Also, it appears this currently does NOT work on the gamepass version.

If you get a virus warning, those are false positives. To make it easier to use, I packed the python script as an EXE so that people don't have to use the Terminal. The code is fully open source (link at the bottom). I talked to nexus about the false detections, so they reviewed it for me and approved it.

---

Usage: 

- Download the ZIP
  - Either from the Nexus Download Page 
  - Or directly from GitHub
- Extract it anywhere
- Run re-enable_achievements.exe
  - If prompted, enter path to your saves.
  - Usually: "C:\Users\<USERNAME>\Documents\My Games\Oblivion Remastered\Saved\SaveGames"

Or, Usage for Devs (or Linux users): 
- Make sure to have Python3 installed.
- Download the script to wherever you want.
  - Either from GitHub
  - Or from Nexus Mods
- Run it using `python3 re-enable_achievements.py`
  - If prompted, enter path to your saves.
  - Usually: "C:\Users\<USERNAME>\Documents\My Games\Oblivion Remastered\Saved\SaveGames" - for windows
  - Or: "~/.local/share/Steam/steamapps/compatdata/2623190/pfx/drive_c/users/steamuser/Documents/My Games/Oblivion Remastered/Saved/SaveGames" - for Linux
- Done!

---

How does it work:

The game stores flags about disable achievements in all save files. There are autosave/quicksave, manual saves and a file called saves_meta.sav (which stores info about all saves). All of these different saves use a different format to handle this achievement flag. e.g. saves_meta: 

bIsESS 
   BoolProperty              bNeedTheWholeGameDownloaded 
   BoolProperty             bIsAchievementsDisabled 
   BoolProperty              SaveHash    StrProperty

where "BoolProperty" always comes after the flag name. So the script searches the entire window starting from bIsESS to get the correct offset. 

For the manual saves it was pretty easy, you have "FlagName 00 0D 00 Bool XX" where XX was the actual flag. Like, Bool00 for false and Bool01 for true. 



---

Linux support, improved error handling and backup files timestamps - Thanks to insularia
Add missing f-string and update bool pattern for manual saves - Thanks to DrymarchonShaun

---

Source Code on GitHub: https://github.com/NullDev/Oblivion-Remaster-ReEnable-Achievements