Posted on: 10-03-2012 - Updated on: 10-03-2012 - viewed 5497 times
Description:
This sound macro is extremely useful for wife, kid and mom aggro. First, it sets your volume to 3 as a baseline (if you adjusted it to something else at some point). Then, it will toggle between soft (3) and fairly loud (8).
/run local MV = GetCVar("Sound_MasterVolume") if MV == "0.3" then SetCVar("Sound_MasterVolume", 0.8) elseif MV == "0.8" then SetCVar("Sound_MasterVolume", 0.3) else SetCVar("Sound_MasterVolume", 0.3) end