The Forge is currently under heavy construction. Expect nothing to work. Data is reset every hour.

Mod Details

Fin's In-Raid Modding

Fin's In-Raid Modding 1.4.0

Created by Fin

6.0K Downloads

Unknown SPT Version

Allows all weapon parts to be modded in-raid, while minimizing weapon generation errors (missing grips, barrels, etc. on bot weapons)

This mod functions similarly to Ereshkigal's also similarly-named AIO option, however it also includes modifications to bot generation that should prevent bots from being generated with weapons that are missing vital parts.

This mod is fully compatible with FAIT (From my tests so far, anyways. I can't fully vouch for how it interacts with every combination of FAIT's hundred-ish options), however it may not be compatible with other AI-loadout altering mods.

A note on making other mods compatible, for modders:

This mod functions by not only setting the ._required tag to false for all items with slots, but also by adding a ._wasRequired tag that contains the old value of the ._required tag. AKI's BotGenerator.generateModsForItem function is then altered to perform a check that includes the ._wasRequired tag every time it would normally check for the ._required tag.

In order to make a mod compatible with FIRM, any checks of the ._required tag should be performed using this function:

static checkRequired(slot)

{

if (slot._wasRequired != undefined)

{

if (slot._wasRequired == true)

return true

}

else

if (slot._required == true)

return true

return false

}

Version 1.4.0

1.9K Downloads

Unknown SPT Version Virus Total Results
Created Jul 26th, 2022 Updated Jan 1st, 5:16 PM

Version 1.4.0 for AKI 3.1.x

  • Compatibility update for AKI 3.1.x
Version 1.3.2

1.0K Downloads

Unknown SPT Version Virus Total Results
Created Jul 2nd, 2022 Updated Jan 2nd, 6:29 AM

Version 1.3.2 for AKI 3.0.x

1.3.2 - (July 1, 2022)

  • Should now apply for all raids
Version 1.3.1

188 Downloads

Unknown SPT Version Virus Total Results
Created Jun 30th, 2022 Updated Jan 8th, 5:17 PM

Version 1.3.1 for AKI 3.0.x

1.3.1 - (June 30, 2022)

  • Fix for 'BotGeneratorHelper is undefined' issue
Version 1.3.0

281 Downloads

Unknown SPT Version Virus Total Results
Created Jun 26th, 2022 Updated Jan 1st, 8:31 AM

Version 1.3.0 for AKI 3.0.x

1.3.0 - (June 26, 2022)

  • Updated to work with AKI 3.0.x
Version 1.2.0

520 Downloads

Unknown SPT Version Virus Total Results
Created Apr 8th, 2022 Updated Jan 8th, 7:28 AM

Just a package file update for 2.x.x compatibilty

Version 1.1.0

1.1K Downloads

Unknown SPT Version Virus Total Results
Created Jan 31st, 2022 Updated 19 hours ago

Version 1.1.0 for AKI 2.2.x

  • Compatibility changes for 2.2.x
Version 0.0.0

1.1K Downloads

Unknown SPT Version Virus Total Results
Created Nov 29th, 3:06 PM Updated 16 hours ago

1.0.0b

  • FIRM (Yes. I am sticking with this awful acronym) should now filter out invalid mods automatically, which should stop if from puking up errors when encountering the KS-23, or modded weapons with invalid IDs listed as mods.

1.0.0a

  • Small bugfix

Not quite yet...