Language…
8 users online: 3lectro, Anorakun, arnold369., Golden Yoshi, Metro Shroomin, Stivi, will___, Ziz - Guests: 96 - Bots: 117
Users: 67,940 (2,099 active)
Latest user: derek.isnt.here

How would I go about muting SFX?

I currently have a custom song playing in my level and when the directional coins come on screen, it overwrites the music with the SFX. I'd like to mute the SFX so the music doesn't get interrupted, yet I'm not quite sure how to do so.
Do you mean the P-Switch song (also used for the coin snake)? If so, you can disable it globally by setting "!PSwitch = #$00" in Addmusic's tweaks.asm file. Doing so will disable it also for the actual P-Switch, so if that's undesired you can instead find this part in the tweaks.asm file:
Code
org $028968
	db !PSwitch

and change it to
Code
org $028968
	db $00
Setting "!PSwitch = #$00" worked perfectly. Thanks