Fallout New Vegas
0 of 0

File information

Last updated

Original upload

Created by

FalloutKid14 AKA Suspect from GTA5 Mods

Uploaded by

FalloutKid14

Virus scan

Safe to use

Weapon Incorrect SFX solution (6 comments)

  1. PrikeExzo
    PrikeExzo
    • member
    • 0 kudos
    This mod has case-sensitive config paths, i.e. ~'/fx/wpn/.45 PISTOL NEW' is not the same as ~'/fx/wpn/.45 Pistol new' (thanks to the several comments in discussion section). Because of that some sounds are not present in the game (with this example, .45 pistol still has 9mm sounds).

    Every path in FNVEdit is in lower-case, so, to negate this problem all files and directories need to be renamed to lower-case. I found this method much easier and faster than editing each record in FNVEdit. Do the following:

    1) Extract mod contents somewhere: we now have "All Weapon Sound Overhaul" directory.
    2) Open PowerShell and run script whilst replacing <fullpath> with parent directory in which above mentioned extracted folder is located (e.g. final result will be something like "C:\modfolder\All Weapon Sound Overhaul\Sound\fx\wpn"):

    get-childitem -recurse -directory -path "<fullpath>\All Weapon Sound Overhaul\Sound\fx\wpn" | foreach { cmd /c ren $_.fullname $_.name.tolower() }

    3) Wait till process is done, pack mod back into archive if you are using any mod manager and install it as you would any other mod.
    1. MrBlueBeetle22
      MrBlueBeetle22
      • member
      • 3 kudos
      powershell is erroring out and saying there is a null value or something, so it cant run the script, how do i fix this?
    2. PrikeExzo
      PrikeExzo
      • member
      • 0 kudos
      Post full error stack and preferably your reproduction steps
    3. MrBlueBeetle22
      MrBlueBeetle22
      • member
      • 3 kudos
      okay so I gave it another shot and it seems to have fixed most of the weapons, but the GRA version of the hunting revolver and vance's 9mm SMG are still broken.

      I downloaded the file, extacted the contents, opened windowspowershell ISE (x86) as admin, and ran this command: 

      PS C:\WINDOWS\system32> get-childitem -recurse -directory -path "C:\Users\neolu\Downloads\All Weapon Sounds Overhaul-62870-Fixed\All Weapon Sound Overhaul\Sound\fx\wpn" | foreach { cmd /c ren $_.fullname $_.name.tolower() }

      It gave this message after the command was done:

      cmd : 'vance9mmsmg' is not recognized as an internal or external command,
      At line:1 char:158
      + ... \Sound\fx\wpn" | foreach { cmd /c ren $_.fullname $_.name.tolower() }
      +                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          + CategoryInfo          : NotSpecified: ('vance9mmsmg' i...ternal command,:String) [], RemoteException
          + FullyQualifiedErrorId : NativeCommandError
       
      operable program or batch file.

      I then re-compressed the folder to a zip and installed it via vortex.

    4. MrBlueBeetle22
      MrBlueBeetle22
      • member
      • 3 kudos
      okay so I gave it another shot and it seems to have fixed most of the weapons, but the GRA version of the hunting revolver and vance's 9mm SMG are still broken.

      I downloaded the file, extacted the contents, opened windowspowershell ISE (x86) as admin, and ran this command: 

      PS C:\WINDOWS\system32> get-childitem -recurse -directory -path "C:\Users\neolu\Downloads\All Weapon Sounds Overhaul-62870-Fixed\All Weapon Sound Overhaul\Sound\fx\wpn" | foreach { cmd /c ren $_.fullname $_.name.tolower() }

      It gave this message after the command was done:

      cmd : 'vance9mmsmg' is not recognized as an internal or external command,
      At line:1 char:158
      + ... \Sound\fx\wpn" | foreach { cmd /c ren $_.fullname $_.name.tolower() }
      +                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          + CategoryInfo          : NotSpecified: ('vance9mmsmg' i...ternal command,:String) [], RemoteException
          + FullyQualifiedErrorId : NativeCommandError
       
      operable program or batch file.

      I then re-compressed the folder to a zip and installed it via vortex.
    5. exeworks
      exeworks
      • member
      • 3 kudos
      That's a syntax error because of the "&"-symbol in one of the folders names. Look for this folder: "1.Vikki&Vance9mmSMG".

      If you just replace the "&"-symbol with "and" and execute the powershell command again it'll work just fine. Once done simply undo the change from "and" to "&" again and you're golden.

      Alternatively u can just use this:

      https://www.nexusmods.com/newvegas/mods/77723