Heya. Sorry to be late (work hours are still prohibiting me from being very active during weekdays). Anyhow, on to explaining how the equipment (suppressor) mod works. First, have this: http://unknown321.github.io/mgsmonsterguns/#! This github repo contains a bunch of weapon parts and their names. From that repo, you'll notice that all weapons are composed of parts. Incidentally, suppressors, same as compensators, are usually named TppEquip.MO. For "Muzzle Option". So what you'll want to do is use something like VSCode or Notepad++ to look for those Muzzle Options parts. For example: {TppEquip.MO_10101,1,90,1}, This is one of the basic suppressors. TppEquip.MO_10101, that is it's ID. Not sure what the first 1 does, but the 90 is the amount of shots a suppressor can take before breaking. As far as I am aware, MGSV suppressors are hard coded to either have between 1 and 90 shots, or be infinite. The problem with that is that infinite suppressors are treated as integral, so you will no longer be able to remove those suppressors. Which is why in my version of the mod, I made it so every suppressor aside from tier 3 has 90 shots in it (which tends to be more than enough for most things, especially considering most SMGs eventually get a tier 3 suppressor so I use SMGs for stealth, rifles for stealth and combat and sniper rifles don't particularly care so long as you have more than 30 shots worth of a suppressor). In case you want to faff around with the numbers yourself, here, have my modified file: This is EquipParameters.lua. I also took the liberty to fix up it's formatting so it's a little bit easier to rid (not everything is just one giant line, now things are spaced up, one item per line, easier to read). I never bothered with infinite ammo, but my suspicion is that the process is very similar: Find the magazine part, then look for it's declared ammo/backup ammo and modify that to -1.