Character Sound Overhaul updated their mod to 2.0 so your Project Atlas Patch may be outdated now (or even no longer needed). The file data.lua is re-written in 2.0.
FYI: It appears that Project Atlas received an update and now the installation instructions for said mod on the Morrowind Sharp guide are no longer accurate. There is no "00 BATs" option and the Hotfix is considered old now since all hotfixes have been applied to the latest available mod version.
From the mod page... "As of version 0.7.3, batch files for generating custom texture atlases are no longer supported due to some complications with the process which this team does not have the bandwidth to manage. If you wish to attempt to create your own atlases, you will have to download version 0.7.1 or older to access the deprecated BAT files. But this is NOT SUPPORTED and any bug reports or comments regarding this topic will be removed. If you use a texture replacer which is not included in PA, we recommend you work with the mod author to create their own atlas."
since this is the version of controlled consumption most widely used (myself included), i decided to post this here
there is a small incompatibility between controlled consumption and alchemical knowledge (which is a part of sharp modlist). when you try to eat an ingredient, alchemical knowledge will make you learn its first effect, even if eating it actually fails if the cooldown is still active. to fix it, in controlled consumption in all files in "module" directory except "disabled.lua" (if this fix is not incorporated and you are editing the mod for personal use you can only edit the module you are actually using) the line
so that cc's equip callback gets called first and prevents alchemical knowledge's callback from executing if cooldown is still active
10 is an arbitrary number btw, any priority >= 1 will work, i picked 10 to give space for other mods to put their events between cc's and ak's if need be
P.S. i actually posted a similar fix before in ak's comments, but upon reflection i think it should actually be cc's responsibility to block all other equip potion/ingredient events from occurring if cc's cooldown is active, hence this post
Regarding the Morrowind Sharp guide, specifically when running MGE XE...In the Statics tab, should we check "Use lists of statics overriding parameters set above" and add "00_main.ovr" found in the Morrowind\mge3 folder before creating statics?
The load order doesn't seem to account for Magicka Expanded, it just gets thrown under everything and doesn't appear in the .txt file. Not sure if this is intended?
I understand MET is being used to upgrade all textures; but, is there anything texture wise that need to be specific - like the Atlas project requires its own textures?
If I wanted to use vurts new armor and clothing texture mods would it work properly with better fitted mods and such?
Only Project Atlas needs specific textures that work with it; MET already includes a Project Atlas patch that the guide recommends.
As for the rest, nearly everything (I want to be careful here) works out of the box. For your question: you will have no problem using Vurt's texture mods with the armor and clothing mods listed in the guide, as those are simple mesh replacers that rely on vanilla texture files (meaning anything that overwrites them will also work).
15 comments
From the mod page...
"As of version 0.7.3, batch files for generating custom texture atlases are no longer supported due to some complications with the process which this team does not have the bandwidth to manage. If you wish to attempt to create your own atlases, you will have to download version 0.7.1 or older to access the deprecated BAT files. But this is NOT SUPPORTED and any bug reports or comments regarding this topic will be removed.
If you use a texture replacer which is not included in PA, we recommend you work with the mod author to create their own atlas."
there is a small incompatibility between controlled consumption and alchemical knowledge (which is a part of sharp modlist). when you try to eat an ingredient, alchemical knowledge will make you learn its first effect, even if eating it actually fails if the cooldown is still active. to fix it, in controlled consumption in all files in "module" directory except "disabled.lua" (if this fix is not incorporated and you are editing the mod for personal use you can only edit the module you are actually using) the line
event.register("equip", this.onEquip)
need to be modified:
event.register("equip", this.onEquip, { priority = 10 })
so that cc's equip callback gets called first and prevents alchemical knowledge's callback from executing if cooldown is still active
10 is an arbitrary number btw, any priority >= 1 will work, i picked 10 to give space for other mods to put their events between cc's and ak's if need be
P.S. i actually posted a similar fix before in ak's comments, but upon reflection i think it should actually be cc's responsibility to block all other equip potion/ingredient events from occurring if cc's cooldown is active, hence this post
If I wanted to use vurts new armor and clothing texture mods would it work properly with better fitted mods and such?
As for the rest, nearly everything (I want to be careful here) works out of the box. For your question: you will have no problem using Vurt's texture mods with the armor and clothing mods listed in the guide, as those are simple mesh replacers that rely on vanilla texture files (meaning anything that overwrites them will also work).