If you experience crashes or performance drops with RE-UE4SS installed, you can do the following steps to alleviate/solve the problem.
1) Go to <install directory> \Phoenix\Binaries\Win64\ 2) Open "UE4SS-settings.ini" with a text editor. 3) Scroll down until you find "[Debug]" 4) Set "ConsoleEnabled", "GuiConsoleEnabled" and "GuiConsoleVisible" to "0", like this: [Debug] ; Whether to enable the external UE4SS debug console. Console Enabled = 0 GuiConsole Enabled = 0 GuiConsole Visible = 0
5) Save and close. 6) Go to <install directory> \Phoenix\Binaries\Win64\Mods 7) Open "mods.txt" with a text editor and set everything to "0" ( BUT leave BPModLoader to "1" if you have a mod installed that requires it ), like this: CheatManagerEnablerMod : 0 ActorDumperMod : 0 ConsoleCommandsMod : 0 ConsoleEnablerMod : 0 SplitScreenMod : 0 LineTraceMod : 0 BPModLoaderMod : 0
The problem seems to be not related to the mod, rather to UE4SS compatibility with the update. I have neither the time to check nor the game installed, try asking on the mod page or check the post here by noodneek
does this even work for any1? followed instructions at every point but i don't seem to see any sort of identification happening oO Unidentified outfit item sits in my inventory absolutely chilling about it's own state XD
UPD. So i added a hotkey as suggested lower in comments - nothing seems to happen. UPD1. I also tried to add simple notification to items reveal function and tried calling it with hotkey - nothing seems to happen. So my assumption is that mod is simply not loaded and the instructions on loading it are not present or i'm kinda dumb. UPD2. Mod is working just fine, the issue is about re-ue4ss itself, ended up doing some stuff from this miracle worker comment https://www.nexusmods.com/hogwartslegacy/mods/1158?tab=posts&BH=3 And i'm good to go, for every1 still looking for the solution - drop some kudos to that guy <3
I cannot test it at this time. has there been a game update? have you installed any other mods? Is there any error related to this mod reported in the UE4SS log file? (...\Phoenix\Binaries\Win64\UE4SS.log)
You can also try this ( I'm doing it blindly, without testing it ) 1) open with notepad the main.lua file (\Phoenix\Binaries\Win64\Mods\AutoRevealGear\Scripts\main.lua) 2) at the bottom, after "LoadingNew()", place this in a new line below RegisterKeyBind(Key.F10, itemsReveal) 3) Save the file and restart the game. This way you have associated the reveal with the "F10" button and should be able to activate it manually.
As stated in the description, the script hooks the pick-up interactions to trigger the reveal, so it will trigger only on pick-ups but will also affect previously collected items.
not necessary, you can edit the file easily by yourself.
- go to <install directory> \Phoenix\Binaries\Win64\Mods\AutoRevealGear\Scripts\ - open the main.lua file with a text editor. - set "showNotification = true" to "showNotification = false" at line 4. - save, done.
I'm pretty sure you can do this same function using a simple SQL mod, instead of RE-UE4SS script. I know because I manually change my PhoenixShipData.sqlite under GearGeneration and change all GearTraitChance and IdentifiedChance to 1.0. So any gear that's dropped will be automatically have traits and identified. Make this into a PAK mod with ModMerger, and you got yourself a nice and easy drag and drop mod.
You're right. SQL mods works great and you can edit pretty much everything, but I think for most users it is a hassle to manage, merge or edit... I don't really like that tbh, this is just a simple lua script, super efficient and easy to unistall.
hmm. since you can just merge something in the existing merged mod with mod merger, its actually pretty Easy :) But nice effort anyway :) did the same mod with SQL :D. But i understand the point of not having to merge it at all.
Indeed I did not say it's difficult, only that a "plug-and-play" way is preferable from my point of view. You know, the main reason I did it is because I like messing around with Lua, I probably wouldn't have even posted it if I had seen your mod first =]
Yes I could, but frankly I'm done with this game :] By the way I installed several mods and I don't have any kind of crashes, also those crashes might be related to the game itself more than UE4SS. Anyway, what mods have you installed? Try following the steps in the sticky post.
17 comments
1) Go to <install directory> \Phoenix\Binaries\Win64\
2) Open "UE4SS-settings.ini" with a text editor.
3) Scroll down until you find "[Debug]"
4) Set "ConsoleEnabled", "GuiConsoleEnabled" and "GuiConsoleVisible" to "0", like this:
[Debug]
; Whether to enable the external UE4SS debug console.
Console Enabled = 0
GuiConsole Enabled = 0
GuiConsole Visible = 0
5) Save and close.
6) Go to <install directory> \Phoenix\Binaries\Win64\Mods
7) Open "mods.txt" with a text editor and set everything to "0" ( BUT leave BPModLoader to "1" if you have a mod installed that requires it ), like this:
CheatManagerEnablerMod : 0
ActorDumperMod : 0
ConsoleCommandsMod : 0
ConsoleEnablerMod : 0
SplitScreenMod : 0
LineTraceMod : 0
BPModLoaderMod : 0
8) Save and close, done.
I have neither the time to check nor the game installed, try asking on the mod page or check the post here by noodneek
Unidentified outfit item sits in my inventory absolutely chilling about it's own state XD
UPD. So i added a hotkey as suggested lower in comments - nothing seems to happen.
UPD1. I also tried to add simple notification to items reveal function and tried calling it with hotkey - nothing seems to happen. So my assumption is that mod is simply not loaded and the instructions on loading it are not present or i'm kinda dumb.
UPD2. Mod is working just fine, the issue is about re-ue4ss itself, ended up doing some stuff from this miracle worker comment
https://www.nexusmods.com/hogwartslegacy/mods/1158?tab=posts&BH=3
And i'm good to go, for every1 still looking for the solution - drop some kudos to that guy <3
No crash or anything, it just stop revealing gear, no idea why
has there been a game update? have you installed any other mods?
Is there any error related to this mod reported in the UE4SS log file?
(...\Phoenix\Binaries\Win64\UE4SS.log)
You can also try this ( I'm doing it blindly, without testing it )
1) open with notepad the main.lua file (\Phoenix\Binaries\Win64\Mods\AutoRevealGear\Scripts\main.lua)
2) at the bottom, after "LoadingNew()", place this in a new line below
RegisterKeyBind(Key.F10, itemsReveal)
3) Save the file and restart the game.This way you have associated the reveal with the "F10" button and should be able to activate it manually.
- go to <install directory> \Phoenix\Binaries\Win64\Mods\AutoRevealGear\Scripts\
- open the main.lua file with a text editor.
- set "showNotification = true" to "showNotification = false" at line 4.
- save, done.
SQL mods works great and you can edit pretty much everything, but I think for most users it is a hassle to manage, merge or edit...
I don't really like that tbh, this is just a simple lua script, super efficient and easy to unistall.
But nice effort anyway :) did the same mod with SQL :D. But i understand the point of not having to merge it at all.
You know, the main reason I did it is because I like messing around with Lua, I probably wouldn't have even posted it if I had seen your mod first =]
By the way I installed several mods and I don't have any kind of crashes, also those crashes might be related to the game itself more than UE4SS.
Anyway, what mods have you installed? Try following the steps in the sticky post.