Quest updated messages and sound effect removal

+
Quest updated messages and sound effect removal

Is there a way or already a mod that removes the quest-update sound effect, messages that quest was updated and messages that I've got some items in the inventory? I would like to have a clean screen and no special sounds besides environment.
 
You can do it yourself. Find the script hudModuleJournalUpdate.ws and search for lines with "soundEvent" in them. For example:
newJournalUpdate.soundEvent = "gui_ingame_quest_active";
Then just delete what's inside quotation marks so it looks like this:
newJournalUpdate.soundEvent = "";
You can also replace them with a different sound this way.

Don't edit the actual script in the game folder obviously, make a mod for yourself.
 
Does anybody know where are scripts that put the messages like the "new diagram" and "new marker" on the screen?
 
Does anybody know where are scripts that put the messages like the "new diagram" and "new marker" on the screen?
Same script, search for functions AddCraftingSchematicUpdate, AddAlchemySchematicUpdate, AddMapPinUpdate, etc. and look for proper lines to comment out.
 
Top Bottom