Banner
Payday 3 Tribune 32
Thumbnail
Downloads380
Views1,254
Publish Date2 months ago
Last Updated2 months ago by
Version0.83
Members
Avatar
MasavikCollaborator
Avatar
columbusCollaborator
Avatar

Is the jacket version of the gun's sounds based on the jacket's piece sound from pd2? (because i modded the jacket's piece and mac-10 to be the ones from BO1 and i want to know)

Avatar

The Miami Decadence/PD3 Jacket gun is just a set of attachments you can equip on the Tribune 32 gun (receiver, barrel extension, stock, magazine). It's not a separate weapon in spite of what the screenshots might lead you to believe, so you can mix and match parts to the base Tribune 32 and Jacket's piece parts as you see fit.

For the sound question, yes, you'd get the BO1 sounds since the Tribune currently uses the Mark 11/MAC10 soundbank.

Avatar

@rjc9000 can you make aversion that uses jacket's piece because the realistic sound pack mod is adding custom made jacket's piece sounds

Avatar

It feels silly to upload a new version that's just a swap of 1 line of code for 1 person's personal preference.

To force the Tribune to use the Jacket Piece sounds, you can go into both the wpn_fps_smg_tribune32.unit file and change

<depends_on bnk="soundbanks/weapon_mac10"/>
to
<depends_on bnk="soundbanks/weapon_cobray"/>

For the akimbo Tribunes, you would open the wpn_fps_smg_x_tribune32.unit file and change

<depends_on bnk="soundbanks/weapon_mac10_x"/>
to
<depends_on bnk="soundbanks/weapon_cobray_x"/>

Avatar

@rjc9000 im dumb can you make a vid (psst if i update this then i figured out how)

Avatar

@rjc9000 Like i cant tell if its owrking but i think its not because like i said i use a custom shooting sound and its doing vanilla instead of the modded one?

Avatar

@rjc9000 btw might respond tomorrow because im always 1 hour late to a response

Avatar

I assumed you replaced the vanilla Jacket Piece sounds through a soundbank replacement like the soundbank mod below.
https://modworkshop.net/mod/44308

If this is how you did the sound replacement for the vanilla guns, then I'm not sure what's going wrong.


Since you stated you were hearing vanilla sounds instead of modded ones, I suspect you modded the Jacket's Piece audio through a Beardlib XAudio (Xaudio is how I do custom firing audio for most of my weapons). So you would need to add the sound ids for the weapon, then tell beardlib to load the sound files you're looking for.

The spoiler-ed code would tell the Tribunes to use your XAudio sound files. It needs to go between <weapon> and </weapon>; note <weapon> with a lowercase w. You will need to do this in both the akimbo Tribunes and the single Tribune.

Spoiler!

<sounds fire="tribune32_fire" fire_single="tribune32_fire" fire_auto="tribune32_fire" stop_fire="m16_stop" use_fix="true"> </sounds>

Then you would need the below code to tell Beardlib to load your (sounds) from (location in the files). This code needs to be somewhere in the main xml and I usually stick this under </Weapon> but before <AddFiles directory="assets">

Spoiler!

`
<Sounds directory="assets\sounds">
<sound id="tribune32_fire" path="yourfilehere.ogg" prefix="regular"/>
<sound id="tribune32_fire" path="yourfilehere.ogg" prefix="suppressed_a"/>
<sound id="tribune32_fire" path="yourfilehere.ogg" prefix="suppressed_b"/>
<sound id="tribune32_fire" path="yourfilehere.ogg" prefix="suppressed_c"/>

</Sounds>	

`

Assets/sounds indicates Beardlib is looking for a sounds folder inside assets with all of these sounds, so you'll need to make that.
The name of the ogg file is whatever the file name of your sound is.
The suppressed sound is exactly what you think it is, so it should be your silenced sound unless you purposely want to use the loud firing sound while having the stat benefits of a suppressed weapon.

Avatar

@rjc9000 make video please

Avatar

I gave the BO1 soundbank a try and I ran into the exact same issue you did where the vanilla sound would play in spite of manually setting the soundbank to the Jacket Piece's.

I genuinely don't know what the issue is with that BO1 soundbank replacement, since I am able to get the Battlefield Project sounds working just fine on custom weapons. I asked the creator of BF Project and he stated that BO1 soundbank might have issues due to its age, but didnt explain anything else.

So I'm sorry to say I don't know how else to help you with the sound replacement via soundbanks, short of trying your hand at the XAudio method.

Avatar

@rjc9000 nahhhhhhh its fine ill just wait for the realistic sound pack to update and see if the change the text to mac10 to cobray ill just wait

26 807