UnmuteSoundFile

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 8.2.5 / 1.15.0

Unmutes a sound file.

UnmuteSoundFile(sound)

Arguments

sound
number|string - FileID of a game sound or file path to an addon sound.

Example

Plays the Sound/Spells/LevelUp.ogg sound

/run PlaySoundFile(569593)

Mutes it, the sound won't play

/run MuteSoundFile(569593); PlaySoundFile(569593) 

Unmutes it and plays it

/run UnmuteSoundFile(569593); PlaySoundFile(569593)

Patch changes

Battle for Azeroth Patch 8.2.0 (2019-06-25): Added. (Build 30948 Jun 27 2019)