Lord Vicious Posted September 7, 2014 Share Posted September 7, 2014 After editing party member names and gold, the saved game does not load. Link to comment Share on other sites More sharing options...
Bester Posted September 7, 2014 Author Share Posted September 7, 2014 (edited) After editing party member names and gold, the saved game does not load. Could you send me the save file that you're editing pls (the original file and the edited version of it)? Just upload it on dropbox or something. The saves are located in C:\Users\<username>\AppData\LocalLow\Obsidian Entertainment\Pillars of Eternity\Saves Edited September 7, 2014 by Bester IE Mod for Pillars of Eternity: link Link to comment Share on other sites More sharing options...
Lord Vicious Posted September 7, 2014 Share Posted September 7, 2014 Thanks for the prompt reply, link sent. Link to comment Share on other sites More sharing options...
Lord Vicious Posted October 11, 2014 Share Posted October 11, 2014 Are you planning to update your editor to v.301? Because I'm sure a lot of us would appreciate the continuation of this great project! 1 Link to comment Share on other sites More sharing options...
Bester Posted October 12, 2014 Author Share Posted October 12, 2014 I don't think updating the save files location is the proper "continuation" of the project. I need to rewrite the whole thing from scratch, because I'd like to deserialize the save files completely and make it possible to edit literally everything stored in there, which is going to require a lot of work (have a look at a verbose version of a save file). And since they recently said they're planning on fixing some issues related to save game mechanism, I'd rather wait for a final or almost final version of it. IE Mod for Pillars of Eternity: link Link to comment Share on other sites More sharing options...
Lord Vicious Posted October 14, 2014 Share Posted October 14, 2014 I don't think updating the save files location is the proper "continuation" of the project. I need to rewrite the whole thing from scratch, because I'd like to deserialize the save files completely and make it possible to edit literally everything stored in there, which is going to require a lot of work (have a look at a verbose version of a save file). And since they recently said they're planning on fixing some issues related to save game mechanism, I'd rather wait for a final or almost final version of it. Thanks for the response! Updating save loc is not that big a deal (we can manually copy saves to and from the old location), but updating the core functionality (e.g. editing of gold, xp, attributes) would be very welcome. People like me who to experiment with custom parties would higly appreciate that, I am sure. And after the postponement, it's a long way till we see a final version. Might as well amuse ourselves with the beta in the meantime, right? But it's your call, of course. 1 Link to comment Share on other sites More sharing options...
Gfted1 Posted October 14, 2014 Share Posted October 14, 2014 Just noticed this thread and wanted to say great work! Anything that allows me to edit my camping supplies has my full support (and gold, why did I never consider gold before now? I am SO going to upgrade the hell out of my stronghold.) "I'm your biggest fan, Ill follow you until you love me, Papa" Link to comment Share on other sites More sharing options...
LunaticPandora Posted October 19, 2014 Share Posted October 19, 2014 Hey, long time lurker but first time poster. So having seen this post I decided that I would try to port this project over to visual c# (especially as bester had voiced his disdain at having made it in unity), it's taken a couple of days but i'm at a point now where I think I have a relatively functional editor. *** At this point I have to mention that a good chunk of the code was taken from Besters project (due to him saying it was open source), soa huge amount of credit must be given to him for providing the basic code and functions to interrogate and update the save files. At no point am I claiming that all of the code in this project is my own, although a fair chunk of it is. *** The only problem is that I completely forgot about the backer cutoff date and never purchased to access to the beta. Currently i'm testing the editor with savegames that people have uploaded to the forums but that presents a lot of issues in that I have no way to compare what I see in the editor to what the actual values are in the game. For things like basic stat editing i'm pretty sure it should work ok, but for more complicated things like adding or removing feats,spells, abilities and items I have no way of verifying that what I am making is going to work. ***None of this is tested on any beta build*** Below is a list of what the editor can do currently - Edit attributes, skills, saves, health, stamina, race, subrace, deity, background etc. - Edit defense bonuses - . disease, poison, etc. - Edit gold and camping supplies - View current abilities, spells, talents and inventory - Alter the quantity of items in the inventory I have a bit more work to do before the program will be truly standalone and at a point where I am happy with it so I won't upload it yet (probably about another 2 days work), however I will ask that if any of the higher level backers have any spare beta keys they would be willing to donate (or trade) to me they would be helping to improve the editor far past what I could ever do without beta access. If this is the case then please PM me. Please see below for some screenshots of the work in progress: Lastly a big thanks to the developers, even with the current discontent about some aspects of the game, the fact that they are even trying to recreate the IE feel and style of games has earnt them a lot of respect from me. 6 Link to comment Share on other sites More sharing options...
Lord Vicious Posted October 20, 2014 Share Posted October 20, 2014 That is awesome! Please upload ASAP! Also, can it get around the annoying level cap? I would really like to see the higher level abilities and finally give my wizard a decent selection of spells rather than 1 per level. Link to comment Share on other sites More sharing options...
LunaticPandora Posted October 20, 2014 Share Posted October 20, 2014 Im not sure about the level cap, as I dont have access to the beta I cant interrogate the game files for stuff like ability files, currently the editor scours any save file it loads for useful information and saves it for later, as such the only way to access the higher level abilities would be to load a game with a character who had them already, so catch 22 really. With regards to uploading, im almost at the point where im able to add and remove spells, abilities and talents, as such I would like to get that done and dusted beforehand. Since im checking my work in a hex editor rather than in engine it takes a little longer. I will definitely upload this in the near future, I just want it to have a good chance of working properly first time. Link to comment Share on other sites More sharing options...
Bester Posted October 22, 2014 Author Share Posted October 22, 2014 Hey, great job, I'm really happy someone decided to take over. By the way, did you know that it's possible to deserialize the save files entirely instead of parsing for hex values? Since they didn't use any code obfuscator, the entire game's code can be easily viewed, and so you can see that they serialize objects with sharpSerializer. So for example in order to deserialize the saveinfo.xml, you can just do use this: using System;using System.Collections;using System.IO;using Polenter.Serialization; public class SaveGameInfo{ //public const int CurrentSaveVersion = 0; //public const int MinimumCompatibleSaveVersion = 0; public string PlayerName {get; set;} public string MapName {get; set;} public string SceneTitle {get; set;} public int Chapter {get; set;} public int PlaytimeSeconds {get; set;} public bool TrialOfIron {get; set;} public DateTime RealTimestamp {get; set;} public Guid SessionID {get; set;} public string FileName {get; set;} public int SaveVersion {get; set;}}public class main { public static string tempPath = "C:\\somepath"; // some path where you unzip the save files... SaveGameInfo sgi; public void infoDeserialize() { SharpSerializer sharpSerializer = new SharpSerializer(true); sgi = sharpSerializer.Deserialize(Path.Combine(tempPath,"saveinfo.xml")) as SaveGameInfo; if (sgi != null) Debug.Log("All good"); else Debug.Log("Xml file wasn't found"); // and now we have access to everything... Debug.Log("PlayerName: "+sgi.PlayerName); Debug.Log("MapName: "+sgi.MapName); Debug.Log("SceneTitle: "+sgi.SceneTitle); Debug.Log("Chapter: "+sgi.Chapter); Debug.Log("PlaytimeSeconds: "+sgi.PlaytimeSeconds); Debug.Log("TrialOfIron: "+sgi.TrialOfIron); Debug.Log("RealTimestamp: "+sgi.RealTimestamp); Debug.Log("SessionID: "+sgi.SessionID); Debug.Log("FileName: "+sgi.FileName); Debug.Log("SaveVersion: "+sgi.SaveVersion); } Easy access to variables. And to save them: public void infoReserialize() { SharpSerializer sharpSerializer = new SharpSerializer(true); sharpSerializer.Serialize(sgi, Path.Combine(tempPath, "copy.xml")); }} And by the way, if you're going to make your editor cross platform, here's where they keep savegame files for different OSes: public static string savesPath; if (Application.platform == RuntimePlatform.WindowsEditor || Application.platform == RuntimePlatform.WindowsPlayer) { savesPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "Saved Games\\Pillars of Eternity"); } else { if (Application.platform == RuntimePlatform.OSXEditor || Application.platform == RuntimePlatform.OSXPlayer) { savesPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "/Library/Application Support/Pillars of Eternity/Saved Games"); } else { if (Application.platform == RuntimePlatform.LinuxPlayer) { savesPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "PillarsOfEternity/SavedGames"); } } } if (!Directory.Exists(savesPath)) { Directory.CreateDirectory(savesPath); } Hope it helps. IE Mod for Pillars of Eternity: link Link to comment Share on other sites More sharing options...
LunaticPandora Posted October 22, 2014 Share Posted October 22, 2014 Bester, you are a legend! I didn't know I could do that, that is very very useful, I will make sure to use it to edit stuff properly! Link to comment Share on other sites More sharing options...
Karkarov Posted October 22, 2014 Share Posted October 22, 2014 Even though I agree with Besters reasons for stopping work on it, at least for now, it is nice to see Pandora has made some strides too. Keep up the great work guys, a solid, bug free (well as bug free as possible), and functional character and save game editor will be a huge boon at launch. Link to comment Share on other sites More sharing options...
LunaticPandora Posted October 22, 2014 Share Posted October 22, 2014 If someone could send me the Assembly-Csharp.dll file from the backer beta that would be extremely helpful with making a fully deserialized save editor. I'm probably going to push back releasing the editor until I get it working properly now. Link to comment Share on other sites More sharing options...
Sensuki Posted October 22, 2014 Share Posted October 22, 2014 I already PM'ed you saying I could provide it. I'll upload it for you. Link to comment Share on other sites More sharing options...
Lord Vicious Posted October 22, 2014 Share Posted October 22, 2014 If someone could send me the Assembly-Csharp.dll file from the backer beta that would be extremely helpful with making a fully deserialized save editor. I'm probably going to push back releasing the editor until I get it working properly now. Sent it, check PM. Link to comment Share on other sites More sharing options...
Lord Vicious Posted October 25, 2014 Share Posted October 25, 2014 The new build is up, dude, please release the Editor Link to comment Share on other sites More sharing options...
LunaticPandora Posted October 27, 2014 Share Posted October 27, 2014 It's still a work in progress, I've been able to deserialise all of the information in the save files without getting any read errors, however it is a pretty awkward job, especially as I am a self taught coder. At the moment I need to verify that the data I am loading is actually correct. On the plus side, after about 5 hours of commenting bits out I have managed to import all of the original POE scripts into unity and get them working, which means that things like resources, string tables etc should be editable in the near future. Will keep you posted on progress. Link to comment Share on other sites More sharing options...
Sensuki Posted October 27, 2014 Share Posted October 27, 2014 You need Unity Pro for some of the features, such as re-importing edited assets into the game. Link to comment Share on other sites More sharing options...
LunaticPandora Posted October 27, 2014 Share Posted October 27, 2014 Well sadly I dont have $1500 to spare for pro, although im not sure how the override folder works yet so thats something to look into. Still a bit of a learning curve at the moment with regards to what is going on where with the original code and assets so progress may be a bit slow initially, particularly when the wife isnt working and moans at me for being on the computer all night Link to comment Share on other sites More sharing options...
Sensuki Posted October 27, 2014 Share Posted October 27, 2014 I heard there are *ahem*, other ways of getting it. 2 Link to comment Share on other sites More sharing options...
Bester Posted October 28, 2014 Author Share Posted October 28, 2014 I heard there are *ahem*, other ways of getting it. This. And there's also a 30 days trial. IE Mod for Pillars of Eternity: link Link to comment Share on other sites More sharing options...
kingcrowley6969 Posted November 29, 2014 Share Posted November 29, 2014 How do i get this to work? When i click it open but i cannot select a saved game file. Sorry kind of nooby. Link to comment Share on other sites More sharing options...
kingcrowley6969 Posted November 29, 2014 Share Posted November 29, 2014 So i moved the saved game to the folder you suggested and it let me open and edit but when i move it back and try to load the file it stays on the loading screen... not sure what i did wrong. Link to comment Share on other sites More sharing options...
Bester Posted November 30, 2014 Author Share Posted November 30, 2014 Hey. The savegame editor is outdated and doesn't work, and LunaticPandora seems to have lost interest in finishing his version. Considering the modding possibilities that are now becoming available, I think an interesting alternative would be to make an ingame editor instead. Why quit the game to edit a save when you can do it in game, on the fly. It's something I might look into later. 2 IE Mod for Pillars of Eternity: link Link to comment Share on other sites More sharing options...
Recommended Posts