Changes

Jump to navigation Jump to search
no edit summary
</pre>
So this version will be used even for the older versions than '''1.20'''. At the moment there is no way to specify different informational package for older game version so for example if your mod will target '''1.20''' game patch you will be able to specify different informational version for 1.19 and older patches and different for 1.21 and newer. However you can specify version of informational package so it will be only used for specified version. Let's say you have two informational versions - one informing about downgrade (folder is called '''downgrade_info_package''') and one informing about update of the game(folder is called '''upgrade_info_package'''). You have nice description in both packages with advices how to do upgrade and downgrade now you just need to add your packages to '''versions.sii'''. The version for older game versions will look like that. <pre>package_version_info : .info.upgrade.older.game.versions{ package: "upgrade_info_package" informational: true compatible_versions[]: "1.19.*" compatible_versions[]: "1.18.*" compatible_versions[]: "1.17.*" compatible_versions[]: "1.16.*" compatible_versions[]: "1.15.*" compatible_versions[]: "1.14.*" compatible_versions[]: "1.13.*" compatible_versions[]: "1.12.*" compatible_versions[]: "1.11.*" compatible_versions[]: "1.10.*" compatible_versions[]: "1.9.*" compatible_versions[]: "1.8.*" compatible_versions[]: "1.7.*" compatible_versions[]: "1.6.*" compatible_versions[]: "1.5.*" compatible_versions[]: "1.4.*" compatible_versions[]: "1.3.*" compatible_versions[]: "1.2.*" compatible_versions[]: "1.1.*" compatible_versions[]: "1.0.*"}</pre>  The version for newer game versions will look like that. <pre>package_version_info : .info.downgrade.newer.game.versions{ package: "downgrade_info_package" informational: true}</pre> You may notice in newer package there are no compatible versions specified. As your real mod content package looks like that: <pre>package_version_info : .content{ package: "content" compatible_versions[]: "1.20.*"}</pre> and all the older game versions are listed in the upgrade package - downgrade package will be selected ONLY for the patches newer than 1.20.
developer
1,626
edits

Navigation menu