-
Posts
519 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Blogs
Everything posted by Noqn
-
https://www.nexusmods.com/pillarsofeternity2/mods/804 This should fix the bug described here: https://gamefaqs.gamespot.com/pc/227477-pillars-of-eternity-ii-deadfire/faqs/76599/bugs-and-oddities As I've understood it, this has been a pain point ever since patch 5.0 for many Credit to @ShadyDax for nudging me to check this bug out Note that this does not fix potions added by mods (I'm gonna have to patch Potion of Enlightenment later ) Going to sleep now
- 1 reply
-
- 2
-
-
-
Hi, I think this is actually a very similar issue as the one @Adonis Jorge Silva Santos had (which I've been planning on working on soon). Basically the shield has to be upgraded from EquippableGameData -> WeaponGameData, and then have an WeaponComponent added to it, but Apotheosis does not support this yet.
-
Sorry about this, I think it happens any gamedata or (most likely) localization files are corrupt. I'll try to take a look at it during the weekend to make Apotheosis produce an error message instead of freezing, once and for all If you want Apotheosis to start working meanwhile, my only suggestion is to reinstall/repair your Deadfire installation. Again, sorry for the issues : ( Sadly @brokensave seems to have deleted their account but I've improved the behavior of the export setup dialog now 2025-04-10 Improved initial setup dialog behavior when extracting icons and loose data files into apotheosis_exported: Export progress is now visualised by progress bars. Apotheosis no longer freezes indefinitely if an error occurred during exporting, instead a message box will pop up. I put some extra work into making sure progress is displayed to the user, so it doesn't just feel like the program has frozen:
-
Ah, sorry about that... I'll add way for users to change the path to the Deadfire exe at that point To solve this for now (presuming you are on windows) in the file explorer enter %APPDATA%, then open the "Apotheosis" folder, then delete "apotheosis.json" You should be able to enter a new path after that
-
Sorry about this, I think it happens any gamedata or (most likely) localization files are corrupt. I'll try to take a look at it during the weekend to make Apotheosis produce an error message instead of freezing, once and for all If you want Apotheosis to start working meanwhile, my only suggestion is to reinstall/repair your Deadfire installation. Again, sorry for the issues : (
-
There's a Mac release available now and I think I've made the correct code changes support Mac, but I've got no way of testing the app myself so just to be clear... no clue if it actually works Mac download links can be found here: https://gitlab.com/noqn/apotheosis#download--run (Be sure to confirm whether your mac is arm or x64 and select the appropriate download) In addition, on Mac you also have to download GTK 3 (the gui toolkit I've used for Apotheosis) yourself. First, install https://brew.sh/, then you can simply run the following commands: brew install gtk+3 brew install gtksourceview4 brew install adwaita-icon-theme After that, Apotheosis should theoretically be able to run, but again I really have no clue whether it will work at all. Please let me know how it goes
-
I got asked this a while ago elsewhere but never got a response back, I'll copy paste what I wrote back then: _________________ Apotheosis needs to extract some game files that I'm not certain are available in the Mac version. You could help me by verifying whether they exist and if so where they are located! Two Unity asset files (required for extracting icons) on Windows and Linux these are located at .../PillarsOfEternityII_Data/assetbundles/gui.unity3d .../PillarsOfEternityII_Data/sharedassets2.assets The "exported" and "lax*_exported" game data folders. On Windows and Linux these are located at .../PillarsOfEternityII_Data/exported/ .../PillarsOfEternityII_Data/lax1_exported/ .../PillarsOfEternityII_Data/lax2_exported/ ... Thanks! Another issue is GTK 3, the GUI framework I'm using. The GTK libraries are preinstalled on pretty much every Linux distribution and I'm bundling the windows libraries with the windows version of Apotheosis. But just as a heads up I think Mac users would have to install GTK 3 on their own to be able to run Apotheosis.
-
I did some digging and you can bind two keys to enable/disable smart camera with these console commands: BindCommand F6 "SetSmartCameraState ForceEnabled" BindCommand F7 "SetSmartCameraState ForceDisabled" You can replace F6/F7 above with any key listed here: https://docs.unity3d.com/ScriptReference/KeyCode.html (there's no way create a "toggle" hotkey with console commands like this sadly) The keybindings will persist in your save, but the exact camera state will not be remembered after you exit the game just fyi, it will default to whatever the UI Setting is set to. To revert these bindings, run these commands: SetSmartCameraState UsingSmartSettings ClearBoundCommands