I managed to merge both the D2 and D3 mod for personal use and wanted to update the mastery names for when dual classes are used.
I know it’s controlled in Text_EN.arc, the text files that reside in it,and have to update the tagSkillClassNameXXYY to coincide with the master enumeration.
for instance
tagSkillClassName11=Classic Necromancer (tags__necromancer.txt)
&
tagSkillClassName08=Witch Doctor (ClassWitchDoctorTags.txt)
i added the tagSkillClassName0811=Nephalem Warlock to (tags__necromancer.txt), and made the class in GD.
The tag does not work, the only way the tag would work is if if add
tagSkillClassName1108=Nephalem Warlock to (ClassWitchDoctorTags.txt)
Is this normal? Is there another file I should look to?
You’re doing it right, assetmanager can be funny. Make sure both source txt files have an asset entry. And sometimes it helps to delete your resource folder and arz file. This forces AM to rebuild everything new instead of packing changes.
Are you sure, you make right mastery re numeration.
Both mods use same range by default.
tagSkillClassName0811 concerns to D2 Sorceress/Necromancer hybrid. So if WD use same number (tagSkillClassName08) it will confront with Sorceress.
Also pay attention to sequence of tags files, game use it in alphabetical order (ClassWitchDoctorTags first, tags__necromancer second).
Yeah i did some weird enumeration when i first merged the mods together. I began adding necro first (enumeration 11), paladin second (enumeration changed to from 7 to 12 due to the d3-demon hunter taking 07), then added the rest after I got acclimated with the file structure and how the skillsUI,buttons,classtable.dbrs are all linked.
Does the master enumeration matter if the _classtraining_classXX.dbr file is different than the enumeration? For instance, paladin is _classtraining_class07.dbr, but the enumeration is 12.
Regarding the alphabetical sequence of tag files, not sure if is utilized -i added a different name to ClassWitchDoctorTags (Nephalem Warlock-WD) than tags__necromancer(Nephalem Warlock-N), and it looks like the game picks up the tags__necromancer mastery combination tag first, regardless of how it’s ordered in the ARC file.
Does this matter if you combine the arc files after the fact? The arz file that’s built doesn’t regard these do they? (only what’s new in the database tab in AM)