Hello,
I am attempting to install Realistic Guns Sounds with Lenny's Mod Loader (it comes in OIV format). I think I've figured out the vast majority of the install.xml, but I am unsure how to convert these lines of the OIV assembly.xml to the install.xml equivalent:
<archive path="update\update.rpf" createIfNotExist="True" type="RPF7">
<archive path="x64\patch\data\effects\ptfx.rpf" createIfNotExist="True" type="RPF7">
<add source="particles\med\core.ypt">core.ypt</add>
</archive>
</archive>
<archive path="update\update.rpf" createIfNotExist="True" type="RPF7">
<archive path="x64\patch\data\effects\ptfx_hi.rpf" createIfNotExist="True" type="RPF7">
<add source="particles\hi\core.ypt">core.ypt</add>
</archive>
</archive>
<archive path="update\update.rpf" createIfNotExist="True" type="RPF7">
<archive path="x64\patch\data\effects\ptfx_lo.rpf" createIfNotExist="True" type="RPF7">
<add source="particles\lo\core.ypt">core.ypt</add>
</archive>
</archive>
What I could come up with was something along the lines of:
<FileReplacement>
<GamePath>update:/x64/patch/data/effects/ptfx.rpf/core.ypt</GamePath>
<FilePath>particles/med/core.ypt</FilePath>
</FileReplacement>
But can you refer to nested RPFs like that?
Thank you!