Quake Live

Quake Live

Otillräckligt med betyg
On-screen Sliders for Voice and Master Volume
Av Brandon
I saw some posts on ESR about making a volume slider, so I went ahead and made a few tweaks and added a voice volume slider as well. Just create a new config file and paste it in there, then run it by typing exec "config name here" in the console(recommended), or add a line to autoexec.cfg(not recommended). Use the arrow keys to adjust the volume.

* Note that both sliders only go as high as 1, so if you need it to go louder than that, you'll have to modify it.
* If you set the config to auto-load via autoexec.cfg, the volumes jump to .5 on the first input after loading the game.
   
Utmärkelse
Favorit
Favoritmarkerad
Avfavoritmarkerad
Paste this into a config file:
// master volume slider

bind rightarrow "vstr vup"
bind leftarrow "vstr vdn"

seta vup "vstr vol05"
seta vdn "vstr vol05"
seta vol10 "set s_volume 1.0;set vdn vstr vol09;set vup vstr vol10;print ^3Master Volume ^4<^7=========^2O^4>"
seta vol09 "set s_volume 0.9;set vdn vstr vol08;set vup vstr vol10;print ^3Master Volume ^4<^7========^2O^7=^4>"
seta vol08 "set s_volume 0.8;set vdn vstr vol07;set vup vstr vol09;print ^3Master Volume ^4<^7=======^2O^7==^4>"
seta vol07 "set s_volume 0.7;set vdn vstr vol06;set vup vstr vol08;print ^3Master Volume ^4<^7======^2O^7===^4>"
seta vol06 "set s_volume 0.6;set vdn vstr vol05;set vup vstr vol07;print ^3Master Volume ^4<^7=====^2O^7====^4>"
seta vol05 "set s_volume 0.5;set vdn vstr vol04;set vup vstr vol06;print ^3Master Volume ^4<^7====^2O^7=====^4>"
seta vol04 "set s_volume 0.4;set vdn vstr vol03;set vup vstr vol05;print ^3Master Volume ^4<^7===^2O^7======^4>"
seta vol03 "set s_volume 0.3;set vdn vstr vol02;set vup vstr vol04;print ^3Master Volume ^4<^7==^2O^7=======^4>"
seta vol02 "set s_volume 0.2;set vdn vstr vol01;set vup vstr vol03;print ^3Master Volume ^4<^7=^2O^7========^4>"
seta vol01 "set s_volume 0.1;set vdn vstr vol00;set vup vstr vol02;print ^3Master Volume ^4<^7^2O^7=========^4>"
seta vol00 "set s_volume 0.0;set vdn vstr vol00;set vup vstr vol01;print ^3Master Volume ^1MUTED"

// voice volume slider

bind uparrow "vstr vvup"
bind downarrow "vstr vvdn"

seta vvup "vstr vvol05"
seta vvdn "vstr vvol05"
seta vvol10 "set s_voicevolume 1.0;set vvdn vstr vvol09;set vvup vstr vvol10;print ^3Voice Volume ^4<^7=========^2O^4>"
seta vvol09 "set s_voicevolume 0.9;set vvdn vstr vvol08;set vvup vstr vvol10;print ^3Voice Volume ^4<^7========^2O^7=^4>"
seta vvol08 "set s_voicevolume 0.8;set vvdn vstr vvol07;set vvup vstr vvol09;print ^3Voice Volume ^4<^7=======^2O^7==^4>"
seta vvol07 "set s_voicevolume 0.7;set vvdn vstr vvol06;set vvup vstr vvol08;print ^3Voice Volume ^4<^7======^2O^7===^4>"
seta vvol06 "set s_voicevolume 0.6;set vvdn vstr vvol05;set vvup vstr vvol07;print ^3Voice Volume ^4<^7=====^2O^7====^4>"
seta vvol05 "set s_voicevolume 0.5;set vvdn vstr vvol04;set vvup vstr vvol06;print ^3Voice Volume ^4<^7====^2O^7=====^4>"
seta vvol04 "set s_voicevolume 0.4;set vvdn vstr vvol03;set vvup vstr vvol05;print ^3Voice Volume ^4<^7===^2O^7======^4>"
seta vvol03 "set s_voicevolume 0.3;set vvdn vstr vvol02;set vvup vstr vvol04;print ^3Voice Volume ^4<^7==^2O^7=======^4>"
seta vvol02 "set s_voicevolume 0.2;set vvdn vstr vvol01;set vvup vstr vvol03;print ^3Voice Volume ^4<^7=^2O^7========^4>"
seta vvol01 "set s_voicevolume 0.1;set vvdn vstr vvol00;set vvup vstr vvol02;print ^3Voice Volume ^4<^7^2O^7=========^4>"
seta vvol00 "set s_voicevolume 0.0;set vvdn vstr vvol00;set vvup vstr vvol01;print ^3Voice Volume ^1MUTED"
2 kommentarer
^1^^0diabolis 1 maj, 2016 @ 4:03 
ty mate ;)
Brandon  [skapare] 13 nov, 2015 @ 18:21 
*Fixed it so the vol down inputs work consistently