Jump to content

Search the Community

Showing results for tags 'save patch'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Obsidian Community
    • Obsidian General
    • Computer and Console
    • Developers' Corner
    • Pen-and-Paper Gaming
    • Skeeter's Junkyard
    • Way Off-Topic
  • Pentiment
    • Pentiment: Announcements & News
    • Pentiment: General Discussion (NO SPOILERS)
    • Pentiment: Stories (Spoiler Warning!)
    • Pentiment: Technical Support (Spoiler Warning!)
  • The Outer Worlds 2
    • The Outer Worlds 2 Speculation
  • Avowed
    • Avowed Speculation
  • Grounded
    • Grounded: Announcements & News
    • Grounded: General Discussion (NO SPOILERS)
    • Grounded: Stories (Spoiler Warning!)
    • Grounded: Technical Support (Spoiler Warning!)
  • The Outer Worlds
    • The Outer Worlds: Announcements & News
    • The Outer Worlds: General Discussion (NO SPOILERS)
    • The Outer Worlds: Stories (Spoiler Warning!)
    • The Outer Worlds: Character Builds & Strategies (Spoiler Warning!)
    • The Outer Worlds: Technical Support (Spoiler Warning!)
  • Pillars of Eternity II: Deadfire
    • Pillars of Eternity II: Deadfire Announcements & News
    • Pillars of Eternity II: Deadfire General Discussion (NO SPOILERS)
    • Pillars of Eternity II: Deadfire Stories (Spoiler Warning!)
    • Pillars of Eternity II: Deadfire Characters Builds, Strategies & the Unity Engine (Spoiler Warning!)
    • Pillars of Eternity II: Deadfire Technical Support (Spoiler Warning!)
  • Pathfinder
    • Pathfinder Adventures: Announcements & News
    • Pathfinder Adventures: General Discussion (No Spoilers!)
    • Pathfinder Adventures: Characters Builds & Strategies (Spoiler Warning!)
    • Pathfinder Adventures: Technical Support (Spoiler Warning!)
  • Pillars of Eternity
    • Pillars of Eternity: Announcements & News
    • Pillars of Eternity: General Discussion (NO SPOILERS)
    • Pillars of Eternity: Stories (Spoiler Warning!)
    • Pillars of Eternity: Characters Builds, Strategies & the Unity Engine (Spoiler Warning!)
    • Pillars of Eternity: Technical Support (Spoiler Warning!)
    • Pillars of Eternity: Backer Beta
  • Pillars of Eternity: Lords of the Eastern Reach
    • Lords of the Eastern Reach: Announcements & News
    • Lords of the Eastern Reach: Speculation & Discussion
    • Lords of the Eastern Reach: Kickstarter Q&A
  • Legacy (General Discussion)
    • Alpha Protocol
    • Dungeon Siege III
    • Neverwinter Nights 2
    • South Park
    • Star Wars Knights of the Old Republic II: The Sith Lords
  • Legacy (Archives)
    • Alpha Protocol
    • Armored Warfare
    • Dungeon Siege III
    • Fallout: New Vegas
    • Neverwinter Nights 2
    • South Park
    • Tyranny

Blogs

  • Chris Avellone's Blog
  • Neverwinter Nights 2 Blog
  • Joshin' Around!
  • Adam Brennecke's Blog
  • Chapmania
  • Pillars of Eternity Backer Site Blog
  • Pillars of Eternity Support Blog
  • Pathfinder Adventures Dev Blogs
  • Obsidian Marketing and Market Research Blog
  • The Community Blog

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


MSN


Skype


Jabber


Yahoo


Website URL


Location


Xbox Gamertag


PSN Online ID


Steam


Interests

Found 1 result

  1. I like the capability to quickly save the game by the press of one single key. Too bad there is only one single quick save slot. Unless... Please find below, as a suggestion to the game developers, a small modificaiton to the source code that enables multiple quick save slots. public bool /* SaveGameMetadata. */ IsQuickSave() { //return Path.GetFileNameWithoutExtension(FileName).EndsWith("quicksave"); return FileName.Contains(" quicksave"); } public static bool /* SaveLoadUtils. */ IsQuickSave(string filename) { //return Path.GetFileNameWithoutExtension(filename).EndsWith("quicksave"); return filename.Contains(" quicksave"); } public static string /* SaveLoadUtils. */ GetQuicksaveFileName() { // return GetSpecialSaveFileName("quicksave", includeMapName: false); return GetQuicksaveFileName(newFile: false); } public static string /* SaveLoadUtils. */ GetQuicksaveFileName(bool newFile) { string baseFileName = GetSpecialSaveFileName("quicksave", includeMapName: false); string fileName = baseFileName, nextFileName = baseFileName; for (int i = 0; ; i++) { if (i > 0) nextFileName = baseFileName.Replace(" quicksave", " quicksave_" + i); if (!File.Exists(FileUtility.CombinePath(SaveGamePath, nextFileName))) return newFile ? nextFileName : fileName; fileName = nextFileName; } } public static string /* SaveLoadManager. */ SaveGame(SaveGameType saveGameType, string userSaveName = "") { //.. // string saveGameFileName = SaveLoadUtils.GetSaveGameNameFromType(saveGameType); string saveGameFileName = (saveGameType == SaveGameType.Quicksave) ? SaveLoadUtils.GetQuicksaveFileName(newFile: true) : SaveLoadUtils.GetSaveGameNameFromType(saveGameType); //.. } I have patched Assembly-CSharp.dll in my game installation with the above patch, and I'm quite happy with the result!
×
×
  • Create New...