Simple Silencers - Load Order Fix
Simple Silencers - Load Order Fix
Fixes the [b]SimpleSilencersModelTable not found[/b] error that happens when NepUniversalSS or USS_VFE Patch load before SimpleSilencers.
[hr]
Problem
SimpleSilencers defines a global table [b]SimpleSilencersModelTable[/b]. Other mods (NepUniversalSS, USS_VFE_UniversalSilencersPatch) require this table to exist. If their shared code runs before SimpleSilencers, the table is nil and they hit early-return:
UniversalSS: ERROR: Univeral Simple Silencers unable to find SimpleSilencersModelTable!
Result: silencers don't work, no weapons get the attach prompt.
[hr]
Fix
Pre-initializes [b]SimpleSilencersModelTable = {}[/b] with a high-priority filename ([b]AAA_...[/b]) so it loads before any other shared file. SimpleSilencers then overwrites it with its real data, and all dependent mods find a valid table.
[list]
[*] Zero impact on gameplay — just a table declaration
[*] Works regardless of mod load order in ini
[*] No dependencies (compatible with any SimpleSilencers setup)
[/list]
[hr]
Related mods
[list]
[*] Simple Silencers
[*] Nepenthe's Universal Simple Silencers
[*] USS + VFE Universal Silencers Patch
[/list]
[hr]
Developed by [b]$J[/b]
Workshop ID: 3712571540
Mod ID: SimpleSilencers_Fix