Simple Silencers - Load Order Fix
Fixes the SimpleSilencersModelTable not found error that happens when NepUniversalSS or USS_VFE Patch load before SimpleSilencers.
Problem
SimpleSilencers defines a global table SimpleSilencersModelTable. 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.
Fix
Pre-initializes SimpleSilencersModelTable = {} with a high-priority filename (AAA_…) so it loads before any other shared file. SimpleSilencers then overwrites it with its real data, and all dependent mods find a valid table.
- Zero impact on gameplay — just a table declaration
- Works regardless of mod load order in ini
- No dependencies (compatible with any SimpleSilencers setup)
Related mods
- Simple Silencers
- Nepenthe's Universal Simple Silencers
- USS + VFE Universal Silencers Patch
Developed by $J
Workshop ID: 3712571540
Mod ID: SimpleSilencers_Fix