Skip to content

Instantly share code, notes, and snippets.

@hbokh
Last active October 21, 2018 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbokh/de3a14d085d2b0bb582a2649dc2830b2 to your computer and use it in GitHub Desktop.
Save hbokh/de3a14d085d2b0bb582a2649dc2830b2 to your computer and use it in GitHub Desktop.
Quake 3 Arena - configuration baseq3/settings.cfg
// Base
seta com_hunkmegs "512"
seta r_hdr "1"
seta r_allowSoftwareGL "0"
// Display
seta r_displayrefresh "0"
seta r_mode "-1"
seta r_customheight "1200"
seta r_customwidth "1920"
seta cg_drawFPS "1"
seta ch_drawspeed "1"
seta pmove_fixed "1"
seta com_maxfps "125"
// OpenGL & graphics
//seta cl_renderer opengl1
seta cl_renderer opengl2
//seta r_mergeLightmaps "0"
//seta r_ignorehwgamma "1"
seta r_lodbias "-2"
seta r_picmip "0"
seta r_texturebits "32"
seta r_textureMode "GL_LINEAR_MIPMAP_LINEAR"
seta r_ext_texture_filter_anisotropic "1"
seta r_ext_max_anisotropy "16"
seta r_ext_framebuffer_multisample "4"
// Mouse acceleration
seta sensitivity "7"
seta cl_mouseAccel "0"
//seta cl_mouseAccelOffset
// Other
seta cl_allowdownload "1"
// Added
bind SHIFT "+movedown"
bind SPACE "+moveup"
bind MOUSE1 "+attack"
bind TAB "+scores"
bind z "+zoom"
bind k "kill"
bind y "messagemode"
bind u "messagemode2"
bind i "messagemode3"
bind v "weapon 1" // gauntlet
bind e "weapon 5" // rocket launcher
bind q "weapon 7" // railgun
bind f "weapon 8" // plasma gun
bind F9 "exec autoexec.cfg"
bind F7 "r_fullscreen 0"
bind F8 "r_fullscreen 1"
seta com_blood "0"
// default: "0.25"
seta s_musicvolume "0.6"
// default: "0.8"
seta s_volume "0.8"
seta cg_fov "115"
seta cg_autoswitch "0"
seta cg_draw3dicons "1"
seta bot_nochat "0"
seta r_finish "1"
seta r_stencilbits "8"
seta r_drawsun "1"
seta r_detailtextures "1"
seta r_colorbits "32"
seta r_dynamiclight "1"
seta r_shadowFilter "2"
seta r_dlightMode "2"
seta r_deluxeMapping "1"
seta r_flares "1"
seta r_subdivisions "4"
// Try r_overbrightbits, r_mapoverbrightbits, and r_intensity instead of r_gamma.
//seta r_gamma "1.6"
seta r_overbrightbits "0"
seta r_mapoverbrightbits "2"
seta r_intensity "2.5"
seta r_fastsky "0"
seta cg_timenudge "0"
seta sens0 "seta sensitivity 5; bind p vstr sens1; echo sensitivity 5"
seta sens1 "seta sensitivity 7; bind p vstr sens2; echo sensitivity 7"
seta sens2 "seta sensitivity 9; bind p vstr sens0; echo sensitivity 9"
bind p "vstr sens0"
seta gamma0 "seta r_gamma 1.0; bind j vstr gamma1; echo *** r_gamma 1.0"
seta gamma1 "seta r_gamma 1.2; bind j vstr gamma2; echo *** r_gamma 1.2"
seta gamma2 "seta r_gamma 1.4; bind j vstr gamma3; echo *** r_gamma 1.4"
seta gamma3 "seta r_gamma 1.6; bind j vstr gamma0; echo *** r_gamma 1.6"
bind j "vstr gamma0"
echo " ======================================"
echo " = ="
echo " = Loaded config file settings.cfg... ="
echo " = ="
echo " ======================================"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment