I think we can all agree that the current shotgun sound (0.15.33) is really dull and has no punch to it whatsoever. So I looked for a mod that changes the sound. But I couldn't find any.
So I decided to look for the sound file and replace that with a proper sound. But I can't find the sound for a shotgun firing. Every other weapons sound (e.g. the maschine pistol firing) is there.
So is it even possible to change this? I really wanna have a more satisfiying feeling when blasting biters full with metal.
Changing Shotgun Sound. But how?
Re: Changing Shotgun Sound. But how?
The currently used file is "__base__/sound/pump-shotgun.ogg".
To change it, make your own file, place it into your mod and add the following code to your data.lua (modify the file destination to fit you).
To change it, make your own file, place it into your mod and add the following code to your data.lua (modify the file destination to fit you).
Code: Select all
data.raw.gun.shotgun.attack_parameters.sound.filename = "__you-mod__/shotgun.ogg"
data.raw.gun["combat-shotgun"].attack_parameters.sound.filename = "__you-mod__/shotgun.ogg"
I'm an admin over at https://wiki.factorio.com. Feel free to contact me if there's anything wrong (or right) with it.
Re: Changing Shotgun Sound. But how?
I'm having a problem:
When i want to load up Factorio im gettung the error message below.
The data.lua looks like this:
This is the directory:
Factorio/mods/shotgunsoundReplacer_0.1.0.zip\shotgunsoundReplacer_0.1.0\data.lua, info.json, shotgun-fire-reload.ogg
Can you help me?
When i want to load up Factorio im gettung the error message below.
The data.lua looks like this:
Code: Select all
data.raw.gun.shotgun.attack_parameters.sound.filename = "__shotgunsoundReplacer_0.1.0__/shotgun-fire-reload.ogg"
data.raw.gun["combat-shotgun"].attack_parameters.sound.filename = "__shotgunsoundReplacer_0.1.0__/shotgun-fire-reload.ogg"
Factorio/mods/shotgunsoundReplacer_0.1.0.zip\shotgunsoundReplacer_0.1.0\data.lua, info.json, shotgun-fire-reload.ogg
Can you help me?
- Attachments
-
- The error message
- Unbenannt.png (5.62 KiB) Viewed 3985 times
Re: Changing Shotgun Sound. But how?
Remove the mod version from the file path:M.Colcko wrote:I'm having a problem:
When i want to load up Factorio im gettung the error message below.
The data.lua looks like this:This is the directory:Code: Select all
data.raw.gun.shotgun.attack_parameters.sound.filename = "__shotgunsoundReplacer_0.1.0__/shotgun-fire-reload.ogg" data.raw.gun["combat-shotgun"].attack_parameters.sound.filename = "__shotgunsoundReplacer_0.1.0__/shotgun-fire-reload.ogg"
Factorio/mods/shotgunsoundReplacer_0.1.0.zip\shotgunsoundReplacer_0.1.0\data.lua, info.json, shotgun-fire-reload.ogg
Can you help me?
Code: Select all
data.raw.gun.shotgun.attack_parameters.sound.filename = "__shotgunsoundReplacer__/shotgun-fire-reload.ogg"
data.raw.gun["combat-shotgun"].attack_parameters.sound.filename = "__shotgunsoundReplacer__/shotgun-fire-reload.ogg"
I'm an admin over at https://wiki.factorio.com. Feel free to contact me if there's anything wrong (or right) with it.
Re: Changing Shotgun Sound. But how?
Ok. Now i am getting a very diffrent error message saying:
"Audio clip sample "__shotgunsoundReplacer__/sounds/shotgun_fire.ogg" not loaded!"
I have uploaded the mod to the portal so you can check any errors yourself:
https://mods.factorio.com/mods/M.Cocko/ ... ndReplacer
"Audio clip sample "__shotgunsoundReplacer__/sounds/shotgun_fire.ogg" not loaded!"
I have uploaded the mod to the portal so you can check any errors yourself:
https://mods.factorio.com/mods/M.Cocko/ ... ndReplacer
Re: Changing Shotgun Sound. But how?
The error occurs in the sound loading phase, which suggests that your audio file is broken in some way, however VLC is able to play it. I would suggest you to try a different file or to de- and encode the audio again, maybe that will fix it. I was able to load the mod by replacing the sound file with another one from one of my mods, and that worked, so it's definitely a problem with you file.
I'm an admin over at https://wiki.factorio.com. Feel free to contact me if there's anything wrong (or right) with it.
Re: Changing Shotgun Sound. But how?
OK thanks. I will try that. I did just change the file type (retype .mp3 to .ogg) so that sure is the issue.
Re: Changing Shotgun Sound. But how?
It works just about perfect now. Thank you very much!