Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update global messages for F4SE v7.1 #605

Merged
merged 2 commits into from
May 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions masterlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,26 +243,22 @@ prelude:
subs:
- 'F4SE'
- '[F4SE](https://f4se.silverlock.org)'
condition: 'file("F4SE/Plugins/([^\.]+\.dll)") and not file("../f4se(vr)?_loader\.exe")'
condition: 'file("F4SE/Plugins/([^\.]+\.dll)") and not file("../f4se_loader.exe")'

- &scriptExtenderRequiredScripts
type: warn
content: 'It appears you have installed **{0}**, but its required scripts seem to be missing. Please ensure you have correctly installed the scripts bundled with the **{1}** installation archive.'
subs:
- 'Fallout 4 Script Extender'
- '[F4SE](https://f4se.silverlock.org)'
condition: 'not file("scripts/F4SE.pex") and ((file("../Fallout4.exe") and file("../f4se_loader.exe")) or (file("../Fallout4VR.exe") and file("../f4sevr_loader.exe")))'
condition: 'not file("scripts/F4SE.pex") and file("../f4se_loader.exe")'

common:
# File Anchors
- &F4SE
name: '../f4se_loader.exe'
display: '[F4SE](https://f4se.silverlock.org)'

- &F4SE_VR
name: '../f4sevr_loader.exe'
display: '[F4SE VR](https://f4se.silverlock.org)'

- &RobCoPatcher
name: 'F4SE/Plugins/RobCo_Patcher.dll'
display: '[RobCo Patcher](https://www.nexusmods.com/fallout4/mods/69798/)'
Expand Down Expand Up @@ -429,23 +425,29 @@ globals:
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.980.0", >=)'
# Fallout 4
- <<: *versionOldX
subs: [ '**Fallout 4**' ]
subs: [ '**Fallout 4 pre-NG**' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", <)'
- <<: *versionUpToDateX
subs: [ '**Fallout 4**' ]
subs: [ '**Fallout 4 pre-NG**' ]
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", ==)'

# F4SE - Latest Version
- <<: *versionOldX
subs: [ '**[F4SE](https://f4se.silverlock.org)**' ]
condition: 'version("../f4se_loader.exe", "0.0.6.23", <) and file("../f4se_loader.exe")'
subs: [ '**[F4SE](https://www.nexusmods.com/fallout4/mods/42147/) NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.7.1", <) and file("../f4se_loader.exe") and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.980.0", >=)'
- <<: *versionUpToDateX
subs: [ '**F4SE NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.7.1", >=) and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.980.0", >=)'
- <<: *versionOldX
subs: [ '**[F4SE](https://f4se.silverlock.org) pre-NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.6.23", <) and file("../f4se_loader.exe") and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", <=)'
- <<: *versionUpToDateX
subs: [ '**F4SE**' ]
condition: 'version("../f4se_loader.exe", "0.0.6.23", >=)'
subs: [ '**F4SE pre-NG**' ]
condition: 'version("../f4se_loader.exe", "0.0.6.23", ==) and readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", <=)'

# F4SE - Runtime Compatibility
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.980.0", >=) and version("../f4se_loader.exe", "0.0.6.23", <=) and file("../f4se_loader.exe")'
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.980.0", ==) and version("../f4se_loader.exe", "0.0.7.1", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
condition: 'readable("../Fallout4.exe") and version("../Fallout4.exe", "1.10.163.0", ==) and version("../f4se_loader.exe", "0.0.6.20", <) and file("../f4se_loader.exe")'
- <<: *versionF4SEIncFO4
Expand Down
Loading